From fb1f2ecae6404c42d61c75fc2a632818a292de7b Mon Sep 17 00:00:00 2001 From: Simon Quigley Date: Sat, 9 Mar 2019 21:28:18 -0600 Subject: [PATCH] Remove --dry-run, it's ready! --- run-ppa-britney | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run-ppa-britney b/run-ppa-britney index de21bcc..4d81e3f 100755 --- a/run-ppa-britney +++ b/run-ppa-britney @@ -17,8 +17,8 @@ for RELEASE in $RELEASES; do while read -r -a package; do # This can eventually be extendable to different archive types if [ $ARCHIVE_TYPE = "ppa" ]; then - ./ubuntu-archive-tools/copy-package --dry-run -y -b -s $RELEASE --from "ppa:lubuntu-ci/ubuntu/unstable-ci-proposed" --to "ppa:lubuntu-ci/ubuntu/unstable-ci" --version "${package[1]}" "${package[0]}"; - ./ubuntu-archive-tools/remove-package --dry-run -y -s $RELEASE --archive "ppa:lubuntu-ci/ubuntu/unstable-ci-proposed" --version "${package[1]}" --removal-comment="moved to release" "${package[0]}"; + ./ubuntu-archive-tools/copy-package -y -b -s $RELEASE --from "ppa:lubuntu-ci/ubuntu/unstable-ci-proposed" --to "ppa:lubuntu-ci/ubuntu/unstable-ci" --version "${package[1]}" "${package[0]}"; + ./ubuntu-archive-tools/remove-package -y -s $RELEASE --archive "ppa:lubuntu-ci/ubuntu/unstable-ci-proposed" --version "${package[1]}" --removal-comment="moved to release" "${package[0]}"; fi done < candidates; rm -rf britney_output/;