aboutsummaryrefslogtreecommitdiff
path: root/contrib/ci/targets/debian
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/ci/targets/debian')
-rwxr-xr-xcontrib/ci/targets/debian/deploy-package/job.sh7
1 files changed, 3 insertions, 4 deletions
diff --git a/contrib/ci/targets/debian/deploy-package/job.sh b/contrib/ci/targets/debian/deploy-package/job.sh
index d39cf9987..07299f2f4 100755
--- a/contrib/ci/targets/debian/deploy-package/job.sh
+++ b/contrib/ci/targets/debian/deploy-package/job.sh
@@ -6,9 +6,8 @@ ARTIFACT_PATH="/artifacts/exchange/${CI_COMMIT_REF}/*.deb"
RSYNC_HOST="taler.host.internal"
RSYNC_PORT=424242
RSYNC_PATH="incoming_packages/bookworm-taler-ci/"
-RSYNC_DEST="rsync://${RSYNC_HOST}/${RSYNC_PATH}"
-
+RSYNC_DEST=${RSYNC_DEST:-"rsync://${RSYNC_HOST}/${RSYNC_PATH}"}
rsync -vP \
- --port ${RSYNC_PORT} \
- ${ARTIFACT_PATH} ${RSYNC_DEST}
+ --port ${RSYNC_PORT} \
+ ${ARTIFACT_PATH} ${RSYNC_DEST}