Skip to content

Commit

Permalink
(maint) Don't use ReleaseOfficial configuration
Browse files Browse the repository at this point in the history
this project has no need for this kind of configuration, so just use
normal Release configuration
  • Loading branch information
vexx32 committed Jul 18, 2024
1 parent e4c95d6 commit b4d2a41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.official.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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%
2 changes: 1 addition & 1 deletion build.official.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
set -eo pipefail

./build.sh --configuration=ReleaseOfficial $*
./build.sh --configuration=Release $*

0 comments on commit b4d2a41

Please sign in to comment.