Fix missing comma
Some checks failed
Core Repos/ImageApi/pipeline/pr-master There was a failure building this commit

This commit is contained in:
Cameron Cordes
2021-02-02 16:03:08 -05:00
parent 5f1bf58f35
commit c2a485e152

2
Jenkinsfile vendored
View File

@@ -11,7 +11,7 @@ pipeline {
steps { steps {
sh 'echo $PWD' sh 'echo $PWD'
sh 'cargo build --release' sh 'cargo build --release'
archiveArtifacts artifacts: '**/target/release/image-api' fingerprint: true archiveArtifacts artifacts: '**/target/release/image-api', fingerprint: true
} }
} }