[CI] Revert to previous logic for branch name and changes (#7343)

This commit is contained in:
Joel Challis 2019-11-13 07:53:05 +00:00 committed by James Young
parent 6449bd2551
commit 7e8f239c2e
1 changed files with 2 additions and 2 deletions

View File

@ -10,8 +10,8 @@ TRAVIS_COMMIT_RANGE="${TRAVIS_COMMIT_RANGE:-HEAD~1..HEAD}"
#TRAVIS_COMMIT_RANGE="c287f1bfc5c8...81f62atc4c1d"
# Extra variables
LOCAL_BRANCH=${TRAVIS_PULL_REQUEST_BRANCH:-${TRAVIS_BRANCH}}
QMK_CHANGES=$(git diff --name-only HEAD ${TRAVIS_BRANCH})
LOCAL_BRANCH=$(git rev-parse --abbrev-ref HEAD)
QMK_CHANGES=$(git diff --name-only -n 1 ${TRAVIS_COMMIT_RANGE})
# if docker is installed - patch calls to within the qmk docker image
if command -v docker >/dev/null; then