fix(build-logic): set hook source file path sensitivity to NONE
The file path is irrelevant, we only care about the script contents
This commit is contained in:
parent
24d9e49289
commit
ff85f751a3
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ import org.gradle.api.tasks.TaskAction
|
|||
@CacheableTask
|
||||
abstract class GitHooks : DefaultTask() {
|
||||
@get:InputFile
|
||||
@get:PathSensitive(PathSensitivity.RELATIVE)
|
||||
@get:PathSensitive(PathSensitivity.NONE)
|
||||
abstract val hookSource: RegularFileProperty
|
||||
|
||||
@get:OutputFile abstract val hookOutput: RegularFileProperty
|
||||
|
|
Loading…
Reference in a new issue