Use bash in jenkinsfile

master
Félix Desmaretz 2024-10-08 23:48:35 +02:00
parent db721f6e36
commit 0b1ab3f60e
1 changed files with 2 additions and 1 deletions

3
Jenkinsfile vendored
View File

@ -16,7 +16,8 @@ pipeline {
} }
steps { steps {
echo 'Building' echo 'Building'
sh '''./render.sh''' sh "#!/bin/bash \n" +
'''./render.sh'''
} }
} }
// stage('Deploy') { // stage('Deploy') {