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 { stages {
stage('Setup') { stage('Setup') {
steps { steps {
sh 'Hello world!' sh 'echo Hello world!'
} }
} }
stage('Check') { stage('Check') {
steps { steps {
sh 'Hello galaxy!' sh 'echo Hello galaxy!'
} }
} }
} }