From: Mark Wooding Date: Fri, 15 Jan 2016 22:39:21 +0000 (+0000) Subject: bin/mdw-build: `nocommit' isn't a special case. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/profile/commitdiff_plain/50c72b0f2508927d524d48de01ba2f42696f11e4?hp=--cc bin/mdw-build: `nocommit' isn't a special case. Fold handling for it in with the rest of the `no*' options. --- 50c72b0f2508927d524d48de01ba2f42696f11e4 diff --git a/bin/mdw-build b/bin/mdw-build index 9717a20..1f73bcb 100755 --- a/bin/mdw-build +++ b/bin/mdw-build @@ -98,14 +98,14 @@ for opt; do case "$opt" in checkout) checkout=yes checkoutrev=HEAD ;; checkout=*) checkout=yes checkoutrev=${opt#*=} ;; - nocheckout) checkout=no ;; release) build=release ;; norelease) build=test ;; setup | distcheck | debian | upload | clean | vpath) eval "$opt=yes" ;; - nosetup | nodistcheck | nodebian | noupload | noclean | novpath) + nocheckout | nosetup | nodistcheck | nodebian | \ + noupload | noclean | novpath) eval "${opt#no}=no" ;; *)