From 62f0ee6956fd0fc459355822d188b7da30460fd8 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Wed, 27 May 2015 22:19:31 +0200 Subject: reproducble: introduce options: --notify and --artifacts --- bin/reproducible_schedule_on_demand.sh | 28 +++++++++------------------- 1 file changed, 9 insertions(+), 19 deletions(-) (limited to 'bin/reproducible_schedule_on_demand.sh') diff --git a/bin/reproducible_schedule_on_demand.sh b/bin/reproducible_schedule_on_demand.sh index 6e2aca81..d9f50626 100755 --- a/bin/reproducible_schedule_on_demand.sh +++ b/bin/reproducible_schedule_on_demand.sh @@ -15,6 +15,15 @@ common_init "$@" # main # set +x +ARTIFACTS=0 +NOTIFY='' +if [ "$1" = "--notify" ] ; then + NOTIFY=true + shift +elif [ "$1" = "--artifacts" ] ; then + ARTIFACTS=1 + NOTIFY=true +fi SUITE="$1" shift if [ "$SUITE" = "sid" ] ; then @@ -22,25 +31,6 @@ if [ "$SUITE" = "sid" ] ; then SUITE=unstable fi -case "$1" in - "artifacts") - ARTIFACTS=1 - NOTIFY=true - shift - printf "\nThe artifacts of the build(s) will be saved to the location mentioned at the end of the build log(s).\n\n" - ;; - "notify") - ARTIFACTS=0 - NOTIFY=true - shift - printf "\nThe IRC channel will be notified once the build(s) finished.\n\n" - ;; - *) - ARTIFACTS=0 - NOTIFY='' - ;; -esac - CANDIDATES="$@" if [ ${#} -gt 50 ] && [ "$NOTIFY" = "true" ] ; then echo -- cgit v1.2.3-54-g00ecf