Browse Source

Fix runDistributable on Windows (#435)

Resolves #378
pull/443/head
Alexey Tsvetkov 3 years ago committed by GitHub
parent
commit
7083376171
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/desktop/application/tasks/AbstractRunDistributableTask.kt

2
gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/desktop/application/tasks/AbstractRunDistributableTask.kt

@ -43,7 +43,7 @@ abstract class AbstractRunDistributableTask @Inject constructor(
execOperations.exec { spec ->
spec.workingDir(workingDir)
spec.executable(executable)
spec.executable(workingDir.resolve(executable).absolutePath)
}.assertNormalExitValue()
}
}
Loading…
Cancel
Save