From: Rudolf Polzer Date: Thu, 13 Jan 2011 19:16:32 +0000 (+0100) Subject: cvar-check: don't abort on failure, just sleep 30 seconds X-Git-Tag: xonotic-v0.5.0~318^2~122 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=4718397c0e1dcd41eadc647f793d67b5e541d080;p=xonotic%2Fxonotic-data.pk3dir.git cvar-check: don't abort on failure, just sleep 30 seconds --- diff --git a/update-cvarcount.sh b/update-cvarcount.sh index 0bd63e9fb..b7c87a34a 100755 --- a/update-cvarcount.sh +++ b/update-cvarcount.sh @@ -14,6 +14,7 @@ for b in balance*.cfg; do awk '/^seta? g_/ { print $2; }' "$b" | sort -u | tr -d '\r' > "$B" diff "$A" "$B" | grep '^[<>]' | sort rm -f "$A" "$B" - exit 1 + echo "Please wait for 30 seconds, so you have had enough time to read this..." + sleep 30 fi done