summary refs log tree commit diff stats
path: root/tests/manyloc/nake/nakefile.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manyloc/nake/nakefile.nim')
-rw-r--r--tests/manyloc/nake/nakefile.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/manyloc/nake/nakefile.nim b/tests/manyloc/nake/nakefile.nim
index de6a1af40..e91b86986 100644
--- a/tests/manyloc/nake/nakefile.nim
+++ b/tests/manyloc/nake/nakefile.nim
@@ -146,7 +146,7 @@ task "download", "download game assets":
 
 task "zip-lib", "zip up the libs dir":
   var z: TZipArchive
-  if not z.open("libs-"& getDateStr() &".zip", fmReadWrite):
+  if not z.open("libs-" & getDateStr() & ".zip", fmReadWrite):
     quit "Could not open zip"
   for file in walkDirRec("libs", {pcFile, pcDir}):
     echo "adding file ", file