From: Rudolf Polzer Date: Fri, 20 Sep 2013 08:31:18 +0000 (+0200) Subject: fix wrong var name X-Git-Tag: xonotic-v0.8.0~67 X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=commitdiff_plain;h=cdab5d6c365e30c1fe34805c90de2a6de2baaf79 fix wrong var name --- diff --git a/misc/tools/xonotic-map-compiler-autobuild b/misc/tools/xonotic-map-compiler-autobuild index e168dc23..aaba4d4c 100755 --- a/misc/tools/xonotic-map-compiler-autobuild +++ b/misc/tools/xonotic-map-compiler-autobuild @@ -184,11 +184,15 @@ buildthemap() is_nosrgb=false fi allow_build=true - case "$map" in + case "$M" in afterslime|dance|drain|glowplant|leave_em_behind|newtonian-nightmare|nexballarena|oilrig|red-planet|runningmanctf|runningman|space-elevator|stormkeep|techassault|xoylent) - if ! $is_nosrgb; then + if $is_nosrgb; then + if [ -n "$IRCSPAM" ]; then + echo "8NOTE: map $M still uses -nosRGB. This should eventually get fixed." | $IRCSPAM || true + fi + else if [ -n "$IRCSPAM" ]; then - echo "CONGRATULATIONS: map $map does not use -nosRGB any more. Please remove the map name from the list in xonotic-map-compiler-autobuild once this is merged to master." | $IRCSPAM || true + echo "9CONGRATULATIONS: map $M does not use -nosRGB any more. Please remove the map name from the list in xonotic-map-compiler-autobuild once this is merged to master." | $IRCSPAM || true fi fi ;; @@ -197,13 +201,13 @@ buildthemap() case "$REFNAME" in master|refs/heads/master|origin/master|refs/remotes/origin/master) if [ -n "$IRCSPAM" ]; then - echo "4ERROR: map $map uses -nosRGB. This is not acceptable in master. Please fix." | $IRCSPAM || true + echo "4ERROR: map $M uses -nosRGB. This is not acceptable in master. Please fix." | $IRCSPAM || true fi allow_build=false ;; *) if [ -n "$IRCSPAM" ]; then - echo "4WARNING: map $map uses -nosRGB. This is not acceptable in master. Please fix." | $IRCSPAM || true + echo "4WARNING: map $M uses -nosRGB. This is not acceptable in master. Please fix." | $IRCSPAM || true fi ;; esac