From 1a892ba0025d0cc795dc4ff9cfa8d162253a77a8 Mon Sep 17 00:00:00 2001 From: David Prevot Date: Mon, 12 Dec 2022 17:08:48 +0100 Subject: [PATCH] CI: Actually limit upload to .deb and .changes --- .Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.Jenkinsfile b/.Jenkinsfile index fca06b5..9e80699 100644 --- a/.Jenkinsfile +++ b/.Jenkinsfile @@ -19,7 +19,7 @@ pipeline { } steps { script { - sh 'rsync -avP build-area/bkctld*{deb,changes} pub.evolix.org:/srv/upload/' + sh 'rsync -avP build-area/bkctld*.deb build-area/bkctld*.changes pub.evolix.org:/srv/upload/' } } }