summary refs log tree commit diff stats
path: root/ci
diff options
context:
space:
mode:
authorDominik Picheta <dominikpicheta@gmail.com>2016-09-14 20:56:35 +0200
committerDominik Picheta <dominikpicheta@gmail.com>2016-09-14 20:56:35 +0200
commitcf40f324075320e7ef8ec09899106235161803ca (patch)
tree088444983026220698179bd0db5204f7b79495d9 /ci
parent6a1b8e691fdd413578bb9e315f34a53369f111ed (diff)
downloadNim-cf40f324075320e7ef8ec09899106235161803ca.tar.gz
GitLab CI: installers are now just renamed in build dir.
Squashed commit of the following:

commit 71a06418623b7bfb6e21a0d54ec9dc5b6eb975a7
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date:   Wed Sep 14 16:46:39 2016 +0200

    Don't move installers to web\
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 309fdb0d8..74bb663a0 100644
--- a/ci/nsis_build.bat
+++ b/ci/nsis_build.bat
@@ -47,7 +47,7 @@ copy /y nimsuggest.exe ..\bin || exit /b
 cd ..
 koch nsis -d:release || exit /b
 dir build
-move /y build\nim_%NIMVER%.exe web\upload\download\nim-%NIMVER%_x32.exe || exit /b
+move /y build\nim_%NIMVER%.exe build\nim-%NIMVER%_x32.exe || exit /b
 
 
 ReM Build Win64 version:
@@ -62,4 +62,4 @@ nim c -d:release --noNimblePath --path:.. nimsuggest || exit /b
 copy /y nimsuggest.exe ..\bin || exit /b
 cd ..
 koch nsis -d:release || exit /b
-move /y build\nim_%NIMVER%.exe web\upload\download\nim-%NIMVER%_x64.exe || exit /b
+move /y build\nim_%NIMVER%.exe build\nim-%NIMVER%_x64.exe || exit /b