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.
2 parents bfa3df0 + 91aad4b commit b41d715Copy full SHA for b41d715
appveyor/build_task.bat
@@ -22,6 +22,13 @@ echo Updating dependencies in %DEPS_DIR%
22
cmd /c phpsdk_deps --update --no-backup --branch %BRANCH% --stability %STABILITY% --deps %DEPS_DIR% --crt %PHP_BUILD_CRT%
23
if %errorlevel% neq 0 exit /b 3
24
25
+rem Something went wrong, most likely when concurrent builds were to fetch deps
26
+rem updates. It might be, that some locking mechanism is needed.
27
+if not exist "%DEPS_DIR%" (
28
+ cmd /c phpsdk_deps --update --force --no-backup --branch %BRANCH% --stability %STABILITY% --deps %DEPS_DIR%
29
+)
30
+if %errorlevel% neq 0 exit /b 3
31
+
32
cmd /c buildconf.bat --force
33
34
0 commit comments