From: Rudolf Polzer <divverent@xonotic.org>
Date: Thu, 8 Aug 2013 11:59:09 +0000 (+0200)
Subject: move ircspam output to stderr
X-Git-Tag: xonotic-v0.8.0~89
X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=17ffea374bd5be4a7a8f58ae272fa573d7c4fff1;p=xonotic%2Fxonotic.git

move ircspam output to stderr
---

diff --git a/misc/tools/xonotic-map-compiler-optionsfile b/misc/tools/xonotic-map-compiler-optionsfile
index 6ede9d5d..ab61fba8 100755
--- a/misc/tools/xonotic-map-compiler-optionsfile
+++ b/misc/tools/xonotic-map-compiler-optionsfile
@@ -17,7 +17,7 @@ lasttime=`cat ~/.xonotic-map-compiler-autobuild/"${M##*/}".buildtime 2>/dev/null
 if [ -n "$lasttime" ] ; then
 	echo "Done in approximately $((($lasttime+59)/60)) minutes."
 	if [ -n "$IRCSPAM" ]; then
-		echo "Done in approximately $((($lasttime+59)/60)) minutes." | $IRCSPAM || true
+		echo "Done in approximately $((($lasttime+59)/60)) minutes." | $IRCSPAM >&2 || true
 	fi
 fi