Avoid to interpret $ in commnad
oginstaller/pipeline/head There was a failure building this commit Details

move-to-docker
Nicolas Arenas 2024-10-25 13:26:59 +02:00
parent bc17e884c7
commit a7b097207b
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -6,7 +6,7 @@ pipeline {
stage('Build') {
steps {
sh "echo root > root_passwd"
sh "docker run --privileged -v /dev:/dev -v /run:/run -v $(pwd):/installer -w /installer --rm opengnsys/oginstallerbuilder ./builder.sh"
sh 'docker run --privileged -v /dev:/dev -v /run:/run -v $(pwd):/installer -w /installer --rm opengnsys/oginstallerbuilder ./builder.sh'
}
}
}