We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea88510 commit 8ecea74Copy full SHA for 8ecea74
build_releases.bat
@@ -8,6 +8,10 @@ set MAKENSIS="%PROGRAMFILES(X86)%\nsis\makensis.exe"
8
for /f "delims=" %%a in ('cat nsisinstaller.nsi ^| grep "!define VERSION" ^| gawk "{ print $3 }" ') do @set VER=%%a
9
10
cd CNCMaps/bin/Release
11
-for /D %%f in (CNCMaps.exe NLog.config NLog.dll OpenlGL32.dll OpenTK.dll OpenTK.dll.config osmesa.dll) DO (
12
- zip -r -j ../../../Release_v%VER%.zip "%%f"
+for /D %%f in (CNCMaps.exe NLog.config NLog.dll OpenGL32.dll OpenTK.dll OpenTK.dll.config osmesa.dll) DO (
+ zip -r -j ../../../Release_v%VER%_win.zip "%%f"
13
+)
14
+
15
+for /D %%f in (CNCMaps.exe NLog.config NLog.dll OpenTK.dll OpenTK.dll.config) DO (
16
+ zip -r -j ../../../Release_v%VER%_nix.zip "%%f"
17
)
0 commit comments