Add missing commas

This commit is contained in:
MassiveBox 2023-07-22 10:26:14 +02:00
parent c650a1fae1
commit fa28b77c52
No known key found for this signature in database
GPG Key ID: 9B74D3A59181947D
1 changed files with 2 additions and 2 deletions

4
jenkins/Jenkinsfile vendored
View File

@ -53,9 +53,9 @@ pipeline {
stage('Publish built files') {
steps {
sh 'mv ecodash_x86 ecodash'
archiveArtifacts artifacts: ['templates/**', 'ecodash'] name: 'ecodash-x86'
archiveArtifacts artifacts: ['templates/**', 'ecodash'], name: 'ecodash-x86'
sh 'mv ecodash_arm ecodash'
archiveArtifacts artifacts: ['templates/**', 'ecodash'] name: 'ecodash-arm'
archiveArtifacts artifacts: ['templates/**', 'ecodash'], name: 'ecodash-arm'
}
}