mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2025-07-04 00:36:36 +00:00
Fix more AppVeyor bugs
This commit is contained in:
parent
8470ffcb0d
commit
7f9cbac232
@ -6,17 +6,22 @@ setlocal enableDelayedExpansion
|
|||||||
set BUILD_CONFIG=%1
|
set BUILD_CONFIG=%1
|
||||||
set ARCH=%2
|
set ARCH=%2
|
||||||
|
|
||||||
if /I "%BUILD_CONFIG%" NEQ "debug" (
|
rem Convert to lower case for windeployqt
|
||||||
if /I "%BUILD_CONFIG%" NEQ "release" (
|
if /I "%BUILD_CONFIG%"=="debug" (
|
||||||
|
set BUILD_CONFIG=debug
|
||||||
|
) else (
|
||||||
|
if /I "%BUILD_CONFIG%"=="release" (
|
||||||
|
set BUILD_CONFIG=release
|
||||||
|
) else (
|
||||||
echo Invalid build configuration
|
echo Invalid build configuration
|
||||||
goto Error
|
exit /b 1
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
if /I "%ARCH%" NEQ "x86" (
|
if /I "%ARCH%" NEQ "x86" (
|
||||||
if /I "%ARCH%" NEQ "x64" (
|
if /I "%ARCH%" NEQ "x64" (
|
||||||
echo Invalid build architecture
|
echo Invalid build architecture
|
||||||
goto Error
|
exit /b 1
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user