fixed bug in shell commands

This commit is contained in:
Guillaume Raffy 2019-03-07 11:43:41 +01:00
parent cdc261f701
commit 01fee2f3b2
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -10,7 +10,7 @@ pipeline {
}
stage('Building the package...') {
steps {
sh '/bin/bash make'
sh '/bin/bash -c make'
// sh '/bin/bash ./src/CI/CI.bash -p ci_venv'
}
}
@ -41,7 +41,7 @@ pipeline {
stage('Cleaning up...') {
steps {
echo 'Cleaning artifacts...'
sh '/bin/bash make clean'
sh '/bin/bash -c "make clean"'
// sh 'rm -rf ./install_resources'
// sh 'cd ./src/doc && make clean'
}