Skip to content

Commit 1497f17

Browse files
committed
enabling workaround for Linux too
1 parent f2b050d commit 1497f17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ val installGitPreCommitHook by tasks.creating(Copy::class) {
176176
fileMode = 755
177177

178178
// Workaround for https://github.com/Kotlin/dataframe/issues/612
179-
if (OSType.identify() == OSType.Mac) doLast {
179+
if (OSType.identify() in listOf(OSType.Mac, OSType.Linux)) doLast {
180180
exec {
181181
workingDir(gitHooksDir)
182182
commandLine("chmod", "755", "pre-commit")

0 commit comments

Comments
 (0)