]> git.xonotic.org Git - xonotic/xonotic.git/blobdiff - misc/tools/xonotic-map-compiler-optionsfile
xonotic-map-compiler-optionsfile: fix check if file exists.
[xonotic/xonotic.git] / misc / tools / xonotic-map-compiler-optionsfile
index efd315b1dcb7098bc4e29696e4866400bb6643de..eb614eb2a3ca27245ccc4389d90e4a973414b198 100755 (executable)
@@ -13,7 +13,7 @@ fi
 mkdir -p ~/.xonotic-map-compiler-autobuild/ # to store map compile times in
 tstart=`date +%s`
 
-if [ -f "~/.xonotic-map-compiler-autobuild/${M:30}" ] ; then
+if [ -f ~/.xonotic-map-compiler-autobuild/${M:30} ] ; then
        lasttime=`cat ~/.xonotic-map-compiler-autobuild/${M:30} 2>/dev/null` # oppress warnings if file doesn't exist
        echo "Done in approximately $(($lasttime/60)) minutes."
 fi