mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2025-02-26 11:47:11 +00:00
Fix more AppVeyor bugs
This commit is contained in:
parent
8470ffcb0d
commit
7f9cbac232
1 changed files with 9 additions and 4 deletions
|
@ -6,17 +6,22 @@ setlocal enableDelayedExpansion
|
|||
set BUILD_CONFIG=%1
|
||||
set ARCH=%2
|
||||
|
||||
if /I "%BUILD_CONFIG%" NEQ "debug" (
|
||||
if /I "%BUILD_CONFIG%" NEQ "release" (
|
||||
rem Convert to lower case for windeployqt
|
||||
if /I "%BUILD_CONFIG%"=="debug" (
|
||||
set BUILD_CONFIG=debug
|
||||
) else (
|
||||
if /I "%BUILD_CONFIG%"=="release" (
|
||||
set BUILD_CONFIG=release
|
||||
) else (
|
||||
echo Invalid build configuration
|
||||
goto Error
|
||||
exit /b 1
|
||||
)
|
||||
)
|
||||
|
||||
if /I "%ARCH%" NEQ "x86" (
|
||||
if /I "%ARCH%" NEQ "x64" (
|
||||
echo Invalid build architecture
|
||||
goto Error
|
||||
exit /b 1
|
||||
)
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue