diff options
author | Anatol Belski <ab@php.net> | 2017-01-06 01:32:40 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2017-01-06 01:32:40 +0100 |
commit | 58767fbb4e1dd6a5deef895a5252d762acc055fb (patch) | |
tree | 463d279fbf3c0da827f6dabd571a53904987eada /appveyor | |
parent | 0beae1f5f39e2e10b795ef2bd1ee315ab191ff82 (diff) | |
parent | 460247c742e953ef3b009b79204a20efca5274b7 (diff) | |
download | php-git-58767fbb4e1dd6a5deef895a5252d762acc055fb.tar.gz |
Merge branch 'PHP-7.1'
* PHP-7.1:
don't use separate deps for release branches
Diffstat (limited to 'appveyor')
-rw-r--r-- | appveyor/build_task.bat | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/appveyor/build_task.bat b/appveyor/build_task.bat index 23cffaf9e8..ad47854e0b 100644 --- a/appveyor/build_task.bat +++ b/appveyor/build_task.bat @@ -17,9 +17,9 @@ if /i "%APPVEYOR_REPO_BRANCH:~0,4%" equ "php-" ( set BRANCH=master set STABILITY=staging ) -set DEPS_DIR=%PHP_BUILD_CACHE_BASE_DIR%\deps-%PHP_SDK_VC%-%PHP_SDK_ARCH%-%APPVEYOR_REPO_BRANCH% +set DEPS_DIR=%PHP_BUILD_CACHE_BASE_DIR%\deps-%PHP_SDK_VC%-%PHP_SDK_ARCH%-%BRANCH% rem SDK is cached, deps info is cached as well -echo Updating dependencies +echo Updating dependencies in %DEPS_DIR% call phpsdk_deps --update --branch %BRANCH% --stability %STABILITY% --deps %DEPS_DIR% if %errorlevel% neq 0 exit /b 3 |