Set the overwrite argument to true.

This commit is contained in:
git 2021-02-14 14:47:00 +01:00
parent 4912ffbd9f
commit edca9cdc5c
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -27,7 +27,7 @@ pipeline {
steps {
echo 'Deploying....'
dir('cmake-build-release') { archiveArtifacts artifacts:'*.deb, *.rpm, *.tar.gz, *.sh', fingerprint: false }
zip zipFile: './Yerbacon-ARM_lpkg.zip', archive: true, glob: "./*.tar.gz, ./*.sh"
zip zipFile: './Yerbacon-ARM_lpkg.zip', overwrite: true, archive: true, glob: "./*.tar.gz, ./*.sh"
dir('cmake-build-release-win32') { archiveArtifacts artifacts:'*.exe', fingerprint: false }
}
}