summary refs log tree commit diff stats
path: root/ci
diff options
context:
space:
mode:
authorDominik Picheta <dominikpicheta@gmail.com>2016-10-16 17:03:24 +0200
committerDominik Picheta <dominikpicheta@gmail.com>2016-10-16 17:03:24 +0200
commitf176128f0728052b10a9c7ddc6e77fdfe8ece088 (patch)
tree38ffe84c5261a67b44fcafc312c1560b237d4928 /ci
parentb3c18b8dd8156793db3022c020ada17c3017af37 (diff)
downloadNim-f176128f0728052b10a9c7ddc6e77fdfe8ece088.tar.gz
CI: ZIPs don't have an underscore in the filename.
Diffstat (limited to 'ci')
-rw-r--r--ci/nsis_build.bat4
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/nsis_build.bat b/ci/nsis_build.bat
index bc3aea407..4e9d0d67c 100644
--- a/ci/nsis_build.bat
+++ b/ci/nsis_build.bat
@@ -43,7 +43,7 @@ koch_temp nsis -d:release || exit /b
 koch_temp zip -d:release || exit /b
 dir build
 move /y build\nim_%NIMVER%.exe build\nim-%NIMVER%_x32.exe || exit /b
-move /y build\nim_%NIMVER%.zip build\nim-%NIMVER%_x32.zip || exit /b
+move /y build\nim-%NIMVER%.zip build\nim-%NIMVER%_x32.zip || exit /b
 
 
 ReM Build Win64 version:
@@ -56,4 +56,4 @@ koch_temp boot -d:release || exit /b
 koch_temp nsis -d:release || exit /b
 koch_temp zip -d:release || exit /b
 move /y build\nim_%NIMVER%.exe build\nim-%NIMVER%_x64.exe || exit /b
-move /y build\nim_%NIMVER%.zip build\nim-%NIMVER%_x64.zip || exit /b
+move /y build\nim-%NIMVER%.zip build\nim-%NIMVER%_x64.zip || exit /b