From b4d2a4105af6f6d721fbf6e4628f84b0b50e0b75 Mon Sep 17 00:00:00 2001 From: Rain Sallow Date: Thu, 18 Jul 2024 15:22:55 -0400 Subject: [PATCH] (maint) Don't use ReleaseOfficial configuration this project has no need for this kind of configuration, so just use normal Release configuration --- build.official.bat | 2 +- build.official.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.official.bat b/build.official.bat index 66bad5b..b9f45f2 100644 --- a/build.official.bat +++ b/build.official.bat @@ -5,7 +5,7 @@ echo ============= WRAP POWERSHELL SCRIPT ============= echo ================================================== echo calling %psscript% with args %* -PowerShell -NoProfile -ExecutionPolicy Bypass -Command "& '%psscript%' -Configuration ReleaseOfficial %*" +PowerShell -NoProfile -ExecutionPolicy Bypass -Command "& '%psscript%' -Configuration Release %*" set buildstatus=%ERRORLEVEL% echo ================================================== exit /b %buildstatus% diff --git a/build.official.sh b/build.official.sh index aa3f59f..7d4ee2a 100644 --- a/build.official.sh +++ b/build.official.sh @@ -1,4 +1,4 @@ #!/usr/bin/env bash set -eo pipefail -./build.sh --configuration=ReleaseOfficial $* \ No newline at end of file +./build.sh --configuration=Release $* \ No newline at end of file