-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathforge.cmd
More file actions
37 lines (32 loc) · 1.25 KB
/
Copy pathforge.cmd
File metadata and controls
37 lines (32 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
@echo off
REM Main script to run all builds
echo.
echo ######################################################################
echo # #
echo # FULL BUILD STARTED #
echo # #
echo ######################################################################
echo.
call build.cmd
echo Wait 2 seconds to ensure file is free
timeout /t 2 /nobreak >nul
call build32.cmd
echo Wait 2 seconds to ensure file is free
timeout /t 2 /nobreak >nul
pushd installer
call build.cmd
echo Wait 2 seconds to ensure file is free
timeout /t 2 /nobreak >nul
SET "BUILD_PORTABLE=1"
call build32.cmd
echo Wait 2 seconds to ensure file is free
timeout /t 2 /nobreak >nul
call buildinno.cmd
echo.
echo ######################################################################
echo # #
echo # FULL BUILD FINISHED #
echo # #
echo ######################################################################
echo.
pause