Make gradlew executable in Jenkinsfile

This commit is contained in:
akastijn 2025-06-28 04:45:07 +02:00
parent cd8cde7bc1
commit 127c0ab508

1
Jenkinsfile vendored
View File

@ -3,6 +3,7 @@ pipeline {
stages {
stage('Gradle') {
steps {
sh 'chmod +x ./gradlew'
sh './gradlew build'
}
}