We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 591e811 commit c6e8c2bCopy full SHA for c6e8c2b
appveyor/build.bat
@@ -18,7 +18,9 @@ if not exist "%PHP_BUILD_CACHE_SDK_DIR%" (
18
git clone --branch %SDK_BRANCH% %SDK_REMOTE% "%PHP_BUILD_CACHE_SDK_DIR%" 2>&1
19
) else (
20
for /f "tokens=*" %%a in ('type %PHP_BUILD_CACHE_SDK_DIR%\VERSION') do set GOT_SDK_VER=%%a
21
- if "%GOT_SDK_VER%" NEQ "%SDK_BRANCH:~8%" (
+ echo Got SDK version %GOT_SDK_VER%
22
+ if NOT "%GOT_SDK_VER%" == "%PHP_BUILD_SDK_BRANCH:~8%" (
23
+ echo Updating to the configured SDK version %SDK_BRANCH:~8%
24
echo Fetching remote SDK repository
25
git --git-dir="%PHP_BUILD_CACHE_SDK_DIR%\.git" --work-tree="%PHP_BUILD_CACHE_SDK_DIR%" fetch --prune origin 2>&1
26
echo Checkout SDK repository branch
0 commit comments