Fixing shell command in Jenkinsfile
Apps/everybody-mov/pipeline/head This commit looks good Details

This commit is contained in:
Amber McCloughan 2022-09-01 00:09:33 -04:00
parent d431990609
commit 144aa93b51
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -9,12 +9,12 @@ pipeline {
stages {
stage('Setup') {
steps {
sh 'Hello world!'
sh 'echo Hello world!'
}
}
stage('Check') {
steps {
sh 'Hello galaxy!'
sh 'echo Hello galaxy!'
}
}
}