summaryrefslogtreecommitdiff
path: root/appveyor
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2017-10-30 11:16:33 +0100
committerAnatol Belski <ab@php.net>2017-10-30 11:16:33 +0100
commita438a633e939d1e717a88d25c6dd9bf49dd50c8e (patch)
tree6625c827300f604202764d56a8713e259029ff20 /appveyor
parente5179054fb073c541dc05fd95742fcffe40f11d1 (diff)
parentbba09a53f4a1106848989a5a84ef22b2a3354dcc (diff)
downloadphp-git-a438a633e939d1e717a88d25c6dd9bf49dd50c8e.tar.gz
Merge branch 'PHP-7.1' into PHP-7.2
* PHP-7.1: Fix SDK version comparison and add more verbosity Don't use the cache dependency, SDK version is handled in script
Diffstat (limited to 'appveyor')
-rw-r--r--appveyor/build.bat4
1 files changed, 3 insertions, 1 deletions
diff --git a/appveyor/build.bat b/appveyor/build.bat
index 417340a335..9971d781ab 100644
--- a/appveyor/build.bat
+++ b/appveyor/build.bat
@@ -18,7 +18,9 @@ if not exist "%PHP_BUILD_CACHE_SDK_DIR%" (
git clone --branch %SDK_BRANCH% %SDK_REMOTE% "%PHP_BUILD_CACHE_SDK_DIR%" 2>&1
) else (
for /f "tokens=*" %%a in ('type %PHP_BUILD_CACHE_SDK_DIR%\VERSION') do set GOT_SDK_VER=%%a
- if "%GOT_SDK_VER%" NEQ "%SDK_BRANCH:~8%" (
+ echo Got SDK version %GOT_SDK_VER%
+ if NOT "%GOT_SDK_VER%" == "%PHP_BUILD_SDK_BRANCH:~8%" (
+ echo Updating to the configured SDK version %SDK_BRANCH:~8%
echo Fetching remote SDK repository
git --git-dir="%PHP_BUILD_CACHE_SDK_DIR%\.git" --work-tree="%PHP_BUILD_CACHE_SDK_DIR%" fetch --prune origin 2>&1
echo Checkout SDK repository branch