From: Rudolf Polzer Date: Sun, 16 Jun 2013 18:43:17 +0000 (+0200) Subject: fix missing log file X-Git-Tag: xonotic-v0.8.0~116 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=232ca00f6c07365d31a8a916251f0c73d50948aa;p=xonotic%2Fxonotic.git fix missing log file --- diff --git a/misc/tools/xonotic-map-compiler-autobuild b/misc/tools/xonotic-map-compiler-autobuild index d7a3a936..ca824d7b 100755 --- a/misc/tools/xonotic-map-compiler-autobuild +++ b/misc/tools/xonotic-map-compiler-autobuild @@ -177,11 +177,11 @@ buildthemap() t0=`date +%s` ( cd ../.. - misc/tools/xonotic-map-compiler-optionsfile "data/xonotic-data.pk3dir/maps/$M" $build_override > "$M.log" 2>&1 + misc/tools/xonotic-map-compiler-optionsfile "data/xonotic-data.pk3dir/maps/$M" $build_override > "data/xonotic-data.pk3dir/maps/$M.log" 2>&1 ) status=$? if ! [ -f "maps/$M.bsp" ]; then - echo >>"$M.log" "ERROR: No BSP file" + echo >>"maps/$M.log" "ERROR: No BSP file" fi t1=`date +%s` dt=$(($t1 - $t0))