From 1cb056f3eaf5d87dd24e56c5baa95b319457d68a Mon Sep 17 00:00:00 2001 From: Morgan McMillian Date: Sat, 12 Nov 2022 20:49:18 -0800 Subject: [PATCH] Fix syntax error in Jenkins build --- Jenkinsfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index b4791ac..113f63d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,7 +2,9 @@ pipeline { agent { label 'snaps' } stages { stage('snap') { - sh 'echo hello' + steps { + sh 'snapcraft' + } } } }