Fix syntax error in Jenkins build
All checks were successful
dreamfall/partybot/pipeline/head This commit looks good

This commit is contained in:
Morgan McMillian 2022-11-12 20:49:18 -08:00
parent ea9007496a
commit 1cb056f3ea

4
Jenkinsfile vendored
View file

@ -2,7 +2,9 @@ pipeline {
agent { label 'snaps' } agent { label 'snaps' }
stages { stages {
stage('snap') { stage('snap') {
sh 'echo hello' steps {
sh 'snapcraft'
}
} }
} }
} }