Fixing jenkinsfile.

master
Tomasz Półgrabia 2021-01-23 11:20:51 +01:00
parent f4f5c44429
commit 78780b9347
1 changed files with 3 additions and 2 deletions

5
Jenkinsfile vendored
View File

@ -4,8 +4,9 @@ pipeline {
stages {
stage('Build') {
steps {
def proc = "gradlew build".execute()
println proc.text
step {
sh("gradlew build")
}
}
}
}