From 866eefaf50435cfde3595c413be12b778030f0b3 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Mon, 27 May 2013 06:26:15 +0200 Subject: [PATCH] [scripts] iso_build.sh: --pushonly implies --push --- scripts/iso_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/iso_build.sh b/scripts/iso_build.sh index f1533e4..49bacf8 100755 --- a/scripts/iso_build.sh +++ b/scripts/iso_build.sh @@ -36,7 +36,7 @@ for arg in "$@"; do [[ "${arg}" = "--push" ]] && DO_PUSH="1" [[ "${arg}" = "--stdout" ]] && DO_STDOUT="1" [[ "${arg}" = "--sleepnight" ]] && DO_SLEEPNIGHT="1" - [[ "${arg}" = "--pushonly" ]] && DO_PUSHONLY="1" + [[ "${arg}" = "--pushonly" ]] && DO_PUSHONLY="1" && DO_PUSH="1" [[ "${arg}" = "--torrents" ]] && MAKE_TORRENTS="1" done