Merge branch '2.8' into 3.4

* 2.8:
  [appveyor] fix bis
  [appveyor] minor CI fix
This commit is contained in:
Nicolas Grekas 2018-09-03 12:35:43 +02:00
commit fc484d77ff
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ $packages = array();
$flags = \PHP_VERSION_ID >= 50400 ? JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE : 0;
foreach ($dirs as $k => $dir) {
if (!system("git diff --name-only $mergeBase -- $dir", $exitStatus)) {
if (!system("git diff --name-only \"$mergeBase\" -- $dir", $exitStatus)) {
if ($exitStatus) {
exit($exitStatus);
}

View File

@ -53,7 +53,7 @@ install:
- php composer.phar self-update
- copy /Y .composer\* %APPDATA%\Composer\
- php composer.phar global require --no-progress --no-scripts --no-plugins symfony/flex dev-master
- php .github/build-packages.php "HEAD^" src\Symfony\Bridge\PhpUnit
- php .github/build-packages.php %APPVEYOR_REPO_COMMIT%^^ src\Symfony\Bridge\PhpUnit
- IF %APPVEYOR_REPO_BRANCH%==master (SET COMPOSER_ROOT_VERSION=dev-master) ELSE (SET COMPOSER_ROOT_VERSION=%APPVEYOR_REPO_BRANCH%.x-dev)
- php composer.phar config platform.php 5.5.9
- php composer.phar update --no-progress --no-suggest --ansi