Fix runDistributable on Windows (#435)

Resolves #378
This commit is contained in:
Alexey Tsvetkov
2021-02-26 21:11:22 +03:00
committed by GitHub
parent 64322e8b68
commit 7083376171

View File

@@ -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()
}
}