File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -180,12 +180,10 @@ val installGitPreCommitHook by tasks.creating(Copy::class) {
180
180
fileMode = 755
181
181
182
182
// Workaround for https://github.com/Kotlin/dataframe/issues/612
183
- if (OSType .identify() in listOf (OSType .Mac , OSType .Linux )) {
184
- doLast {
185
- exec {
186
- workingDir(gitHooksDir)
187
- commandLine(" chmod" , " 755" , " pre-commit" )
188
- }
183
+ if (OSType .identify() in listOf (OSType .Mac , OSType .Linux )) doLast {
184
+ exec {
185
+ workingDir(gitHooksDir)
186
+ commandLine(" chmod" , " 755" , " pre-commit" )
189
187
}
190
188
}
191
189
} else {
@@ -372,7 +370,7 @@ tasks.test {
372
370
listOf (
373
371
" org.jetbrains.kotlinx.dataframe.jupyter.*" ,
374
372
" org.jetbrains.kotlinx.dataframe.jupyter.SampleNotebooksTests" ,
375
- ),
373
+ )
376
374
)
377
375
}
378
376
}
You can’t perform that action at this time.
0 commit comments