You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
:: The output is located in a folder called ..\..\Build\Release. Create an archive with this folder's content, and name the archive Overload-<version>-<platform>.zip.
7
16
for /f "delims="%%vin (..\..\VERSION.txt) dosetversion=%%v
8
17
setplatform=win32_x64
9
18
19
+
10
20
:: Navigate to the release folder
11
-
pushd ..\..\Build\Release
21
+
pushd ..\..\Build\
22
+
23
+
:: Delete any existing folder with the name Overload-%version%-%platform%
24
+
ifexist Overload-%version%-%platform% (
25
+
rmdir /s /q Overload-%version%-%platform%
26
+
)
27
+
28
+
:: Copy the folder "Release" to a new folder called "Overload-%version%-%platform%"
0 commit comments