fixed bug in shell commands
This commit is contained in:
parent
cdc261f701
commit
01fee2f3b2
|
@ -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'
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue