From 927827f38e8e00da9e6dd532bfcdefa4e1dae267 Mon Sep 17 00:00:00 2001 From: Axel Beckert Date: Sun, 9 Feb 2014 03:47:08 +0100 Subject: [PATCH] .deb nightlybuild script: No more warning about using --ignore=wrongdistribution --- contrib/debian/nightlybuild.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/contrib/debian/nightlybuild.sh b/contrib/debian/nightlybuild.sh index 0998927..54902e7 100755 --- a/contrib/debian/nightlybuild.sh +++ b/contrib/debian/nightlybuild.sh @@ -15,7 +15,8 @@ # following packages: gnupg, openssh-client, dctrl-tools, gzip, bzip2 # # And on the machine hosting the APT repository, you'll need the -# package reprepro. +# package reprepro. Configure all distributions with "AlsoAcceptFor: +# UNRELEASED experimental unstable sid". # # If you do only binary rebuilds for other architectures, you do _not_ # need to have the nightly builds APT repository in your @@ -218,7 +219,7 @@ if [ "$UPLOAD" = "yes" ]; then $UPLOAD_SSH_USER@$UPLOAD_SSH_HOST:$UPLOAD_SSH_DIR if [ "$USE_REPREPRO" = "yes" ]; then ssh -i $UPLOAD_SSH_KEY $UPLOAD_SSH_USER@$UPLOAD_SSH_HOST \ - "cd $UPLOAD_SSH_DIR; for i in $REPREPRO_DISTS; do reprepro --ignore=wrongdistribution -v includedeb" '$i' *.deb "; done" + "cd $UPLOAD_SSH_DIR; for i in $REPREPRO_DISTS; do reprepro -v includedeb" '$i' *.deb "; done" fi else scp -i $UPLOAD_SSH_KEY -p *build *deb *changes *dsc *gz \ @@ -226,7 +227,7 @@ if [ "$UPLOAD" = "yes" ]; then if [ "$USE_REPREPRO" = "yes" ]; then ssh -i $UPLOAD_SSH_KEY $UPLOAD_SSH_USER@$UPLOAD_SSH_HOST \ - "cd $UPLOAD_SSH_DIR; for i in $REPREPRO_DISTS; do reprepro --ignore=wrongdistribution -v include" '$i' *.changes "; done" + "cd $UPLOAD_SSH_DIR; for i in $REPREPRO_DISTS; do reprepro -v include" '$i' *.changes "; done" fi fi fi -- 2.11.4.GIT