We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2b050d commit 1497f17Copy full SHA for 1497f17
core/build.gradle.kts
@@ -176,7 +176,7 @@ val installGitPreCommitHook by tasks.creating(Copy::class) {
176
fileMode = 755
177
178
// Workaround for https://github.com/Kotlin/dataframe/issues/612
179
- if (OSType.identify() == OSType.Mac) doLast {
+ if (OSType.identify() in listOf(OSType.Mac, OSType.Linux)) doLast {
180
exec {
181
workingDir(gitHooksDir)
182
commandLine("chmod", "755", "pre-commit")
0 commit comments