diff --git a/Jenkinsfile b/Jenkinsfile index 8d262d9..b8d6e26 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,7 +9,7 @@ pipeline { stage('Build snap for ARM64') { agent { label "snap-arm64" } steps { - sh "rm *.snap" + sh "rm *.snap || true" sh "snapcraft" } post { @@ -21,7 +21,7 @@ pipeline { stage('Build snap for AMD64') { agent { label "snap-amd64" } steps { - sh "rm *.snap" + sh "rm *.snap || true" sh "snapcraft" } post {