diff options
author | Andreas Fischer <bantu@phpbb.com> | 2014-02-03 23:44:15 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2014-02-03 23:44:15 +0100 |
commit | 6f727bc0f99a8d36a11e8c5b61489c2e6e96a0ea (patch) | |
tree | 009274e241d8a427e796c6de993c1053c43c4452 | |
parent | 32536880f4b1fd853a07865c2b55febbfe7a994c (diff) | |
download | forums-6f727bc0f99a8d36a11e8c5b61489c2e6e96a0ea.tar forums-6f727bc0f99a8d36a11e8c5b61489c2e6e96a0ea.tar.gz forums-6f727bc0f99a8d36a11e8c5b61489c2e6e96a0ea.tar.bz2 forums-6f727bc0f99a8d36a11e8c5b61489c2e6e96a0ea.tar.xz forums-6f727bc0f99a8d36a11e8c5b61489c2e6e96a0ea.zip |
[ticket/11509] Contrary to docs, COMMIT_RANGE is not available in PR mode.
PHPBB3-11509
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 4df4bc896a..20a3c4f9fe 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,4 +24,4 @@ before_script: script: - sh -c "if [ '$TRAVIS_PHP_VERSION' = '5.2' ]; then phpunit --configuration travis/phpunit-$DB-travis.xml; else phpBB/vendor/bin/phpunit --configuration travis/phpunit-$DB-travis.xml; fi" - - sh -c "if [ '$TRAVIS_PULL_REQUEST' != 'false' ]; then git-tools/commit-msg-hook-range.sh $TRAVIS_COMMIT_RANGE; fi" + - sh -c "if [ '$TRAVIS_PULL_REQUEST' != 'false' ]; then git-tools/commit-msg-hook-range.sh $TRAVIS_BRANCH...FETCH_HEAD; fi" |