1rem Save working directory so that we can restore it back after building everything. This will make developers happy and then
2rem 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.
3pushd "%~dp0"
4
5cd ..\guix_studio\installer
6
7rem generate studio installer
8"C:\Program Files (x86)\Inno Setup 6\ISCC.exe" /Q "guix_installer_release.iss"
9
10exit /B %ERRORLEVEL%