Fix missing quote in Gradle command in Jenkinsfile

This commit is contained in:
akastijn 2025-06-28 04:44:13 +02:00
parent 97c7b4958b
commit cd8cde7bc1

2
Jenkinsfile vendored
View File

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