Fix control file name
All checks were successful
gitea/equivs/pipeline/head This commit looks good

This commit is contained in:
David Prevot 2022-09-28 12:13:55 +02:00
parent c7089a0e95
commit 3cadc55e18
2 changed files with 1 additions and 1 deletions

View file

@ -5,7 +5,7 @@ pipeline {
stage('Build Debian (equivs) package(s)') { stage('Build Debian (equivs) package(s)') {
steps { steps {
script { script {
sh 'for i in mysql-client ; do equivs-build ${i}.ctl ; done' sh 'for i in *.ctl ; do equivs-build $i ; done'
} }
archiveArtifacts allowEmptyArchive: true, artifacts: '*.deb,*.changes,*.buildinfo' archiveArtifacts allowEmptyArchive: true, artifacts: '*.deb,*.changes,*.buildinfo'
} }