Skip to content

Commit c42b609

Browse files
minor fix for travis
1 parent 3063c62 commit c42b609

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/rm-invalid-lowest-lock-files.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ function getContentHash(array $composerJson)
9696
}
9797
}
9898

99-
if (!$referencedCommits || (isset($_SERVER['TRAVIS_PULL_REQUEST']) && 'false' === $_SERVER['TRAVIS_PULL_REQUEST'])) {
99+
if (!$referencedCommits || (isset($_SERVER['TRAVIS_PULL_REQUEST']) && 'false' !== $_SERVER['TRAVIS_PULL_REQUEST'])) {
100100
// cached commits cannot be stale for PRs
101101
return;
102102
}

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ install:
195195
else
196196
export SYMFONY_REQUIRE=">=$SYMFONY_VERSION"
197197
fi
198-
composer global require symfony/flex dev-master
198+
composer global require --no-progress --no-scripts --no-plugins symfony/flex dev-master
199199
200200
- |
201201
# Legacy tests are skipped when deps=high and when the current branch version has not the same major version number than the next one

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ install:
4444
- IF NOT EXIST composer.phar (appveyor DownloadFile https://github.com/composer/composer/releases/download/1.7.1/composer.phar)
4545
- php composer.phar self-update
4646
- copy /Y .composer\* %APPDATA%\Composer\
47-
- php composer.phar global require --no-progress symfony/flex dev-master
47+
- php composer.phar global require --no-progress --no-scripts --no-plugins symfony/flex dev-master
4848
- php .github/build-packages.php "HEAD^" src\Symfony\Bridge\PhpUnit
4949
- IF %APPVEYOR_REPO_BRANCH%==master (SET COMPOSER_ROOT_VERSION=dev-master) ELSE (SET COMPOSER_ROOT_VERSION=%APPVEYOR_REPO_BRANCH%.x-dev)
5050
- php composer.phar update --no-progress --no-suggest --ansi

0 commit comments

Comments
 (0)