mirror of
https://github.com/azure-rtos/guix.git
synced 2025-01-28 07:03:11 +08:00
10 lines
456 B
Batchfile
10 lines
456 B
Batchfile
|
rem Save working directory so that we can restore it back after building everything. This will make developers happy and then
|
||
|
rem switch to the folder this script resides in. Don't assume absolute paths because on the build host and on the dev host the locations may be different.
|
||
|
pushd "%~dp0"
|
||
|
|
||
|
cd ..\guix_studio\installer
|
||
|
|
||
|
rem generate studio installer
|
||
|
"C:\Program Files (x86)\Inno Setup 6\ISCC.exe" /Q "guix_installer_release.iss"
|
||
|
|
||
|
exit /B %ERRORLEVEL%
|