mirror of
https://github.com/Open-Shell/Open-Shell-Menu.git
synced 2026-04-13 20:28:31 +10:00
* Rebrand to Open-Shell * Slight installer branding improvement
This commit is contained in:
52
Src/Setup/__MakeFinalAllLanguages.bat
Normal file
52
Src/Setup/__MakeFinalAllLanguages.bat
Normal file
@@ -0,0 +1,52 @@
|
||||
@echo off
|
||||
rem This file is to create all the files required for a new release to publish
|
||||
|
||||
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.3.2
|
||||
|
||||
if defined APPVEYOR_BUILD_VERSION (
|
||||
set CS_VERSION=%APPVEYOR_BUILD_VERSION%
|
||||
)
|
||||
|
||||
rem Convert . to _
|
||||
set CS_VERSION_STR=%CS_VERSION:.=_%
|
||||
|
||||
set CS_VERSION_ORIG=%CS_VERSION%
|
||||
rem Strip optional "-xyz" suffix from version
|
||||
for /f "delims=- tokens=1,1" %%i in ("%CS_VERSION%") do set CS_VERSION=%%i
|
||||
|
||||
call BuildBinaries.bat
|
||||
if ERRORLEVEL 1 exit /b 1
|
||||
|
||||
call _BuildEnglish.bat
|
||||
if ERRORLEVEL 1 exit /b 1
|
||||
|
||||
rem Build other languages
|
||||
call _BuildChineseCN.bat
|
||||
if ERRORLEVEL 1 exit /b 1
|
||||
call _BuildChineseTW.bat
|
||||
if ERRORLEVEL 1 exit /b 1
|
||||
call _BuildFrench.bat
|
||||
if ERRORLEVEL 1 exit /b 1
|
||||
call _BuildGerman.bat
|
||||
if ERRORLEVEL 1 exit /b 1
|
||||
call _BuildItalian.bat
|
||||
if ERRORLEVEL 1 exit /b 1
|
||||
call _BuildPolish.bat
|
||||
if ERRORLEVEL 1 exit /b 1
|
||||
call _BuildRussian.bat
|
||||
if ERRORLEVEL 1 exit /b 1
|
||||
call _BuildSpanish.bat
|
||||
if ERRORLEVEL 1 exit /b 1
|
||||
|
||||
call BuildArchives.bat
|
||||
if ERRORLEVEL 1 exit /b 1
|
||||
|
||||
exit /b 0
|
||||
Reference in New Issue
Block a user