]> git.xonotic.org Git - xonotic/xonotic.git/blobdiff - misc/tools/xonotic-map-compiler-optionsfile
xonotic-map-compiler-optionsfile : store seconds in file $M:30
[xonotic/xonotic.git] / misc / tools / xonotic-map-compiler-optionsfile
index 1666c5bfd2bcad01d075363d3a5d6459e7a0744e..4f798c6495b641cf42c075c199f3612064a2dfc9 100755 (executable)
@@ -9,4 +9,16 @@ if [ -n "$sz" ]; then
 else
        minimap_override=
 fi
+
+mkdir -p ~/.xonotic-map-compiler-autobuild/ # to store map compile times
+
+tstart=`date +%s`
+
+
 misc/tools/xonotic-map-compiler "$M" `grep ^- "$M.map.options" | cut -d '#' -f 1` $minimap_override "$@"
+
+tend=`date +%s`
+let tdelta=$tend-$tstart # compute time
+
+cd ~/.xonotic-map-compiler-autobuild/
+echo $tdelta > ${M:30} # save time in ~/.xonotic-map-compiler-autobuild/mapname