mirror of
https://github.com/Open-Shell/Open-Shell-Menu.git
synced 2026-04-14 04:38:26 +10:00
29 lines
612 B
Batchfile
29 lines
612 B
Batchfile
@echo off
|
|
set PATH=C:\Program Files\7-Zip\;C:\Program Files (x86)\HTML Help Workshop;C:\Program Files (x86)\WiX Toolset v3.11\bin\;%PATH%
|
|
|
|
@cd %~dp0
|
|
|
|
@rem Clean repository and build fresh. Will erase current changes so disabled by default.
|
|
rem git clean -dfx
|
|
|
|
@rem Default version
|
|
@set CS_VERSION=4.4.102
|
|
|
|
@if defined APPVEYOR_BUILD_VERSION (
|
|
@set CS_VERSION=%APPVEYOR_BUILD_VERSION%
|
|
)
|
|
|
|
@rem Convert . to _
|
|
@set CS_VERSION_STR=%CS_VERSION:.=_%
|
|
|
|
@call BuildBinaries.bat
|
|
@if ERRORLEVEL 1 exit /b 1
|
|
|
|
@call _BuildEnglish.bat
|
|
@if ERRORLEVEL 1 exit /b 1
|
|
|
|
call BuildArchives.bat
|
|
@if ERRORLEVEL 1 exit /b 1
|
|
|
|
@exit /b 0
|