diff options
author | Anatol Belski <ab@php.net> | 2017-03-23 13:00:14 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2017-03-23 13:00:14 +0100 |
commit | 1dbef2e27a94e3a81a3079be06659db90509971c (patch) | |
tree | bd35a5072935060490d2dae34487c9e7a75d0277 /appveyor | |
parent | bc2b500d3e35de1a0916a122f9dab306286d1d77 (diff) | |
download | php-git-1dbef2e27a94e3a81a3079be06659db90509971c.tar.gz |
adjust deps dir naming scheme
not principal, just to have it same way as everywhere
Diffstat (limited to 'appveyor')
-rw-r--r-- | appveyor/build_task.bat | 2 | ||||
-rw-r--r-- | appveyor/test_task.bat | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/appveyor/build_task.bat b/appveyor/build_task.bat index 550d73f3a4..5b88159d66 100644 --- a/appveyor/build_task.bat +++ b/appveyor/build_task.bat @@ -17,7 +17,7 @@ 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%-%BRANCH% +set DEPS_DIR=%PHP_BUILD_CACHE_BASE_DIR%\deps-%BRANCH%-%PHP_SDK_VC%-%PHP_SDK_ARCH% rem SDK is cached, deps info is cached as well echo Updating dependencies in %DEPS_DIR% call phpsdk_deps --update --branch %BRANCH% --stability %STABILITY% --deps %DEPS_DIR% diff --git a/appveyor/test_task.bat b/appveyor/test_task.bat index 85e144d10b..9f9e238ed3 100644 --- a/appveyor/test_task.bat +++ b/appveyor/test_task.bat @@ -11,7 +11,7 @@ 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%-%BRANCH% +set DEPS_DIR=%PHP_BUILD_CACHE_BASE_DIR%\deps-%BRANCH%-%PHP_SDK_VC%-%PHP_SDK_ARCH% rem setup MySQL related exts set MYSQL_PWD=Password12! |