From: Rudolf Polzer Date: Fri, 19 Nov 2010 12:42:33 +0000 (+0100) Subject: big benchmark: new option --yes to skip the question X-Git-Tag: xonotic-v0.1.0preview~46^2 X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=commitdiff_plain;h=5dfb3765fc7d66c1bce155195af2448dfb5b213c;ds=inline big benchmark: new option --yes to skip the question --- diff --git a/the-big-benchmark.sh b/the-big-benchmark.sh index 7159ef8f..9f33ef65 100755 --- a/the-big-benchmark.sh +++ b/the-big-benchmark.sh @@ -8,21 +8,23 @@ echo echo "WARNING: running this script will destroy ANY local changes you" echo "might have on the repository." echo -echo "Are you absolutely sure you want to run this?" -echo -while :; do - echo -n "y/n: " - read -r yesno - case "$yesno" in - y) - break - ;; - n) - echo "Aborted." - exit 1 - ;; - esac -done +if [ x"$1" != x"--yes" ]; then + echo "Are you absolutely sure you want to run this?" + echo + while :; do + echo -n "y/n: " + read -r yesno + case "$yesno" in + y) + break + ;; + n) + echo "Aborted." + exit 1 + ;; + esac + done +fi set -x rm -f data/benchmark.log