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.
1 parent 5d5ed31 commit c59b6efCopy full SHA for c59b6ef
.travis.yml
@@ -41,8 +41,11 @@ before_install:
41
- git config --global user.name "embARC Automated Bot"
42
- git config --global user.email "[email protected]"
43
- >
44
- if [ "TRAVIS_PULL_REQUEST" != "false" ]; then
45
- git checkout remotes/origin/master -- .ci
+ if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
+ diff=$(git diff FETCH_HEAD master .ci)
46
+ if [ "$diff" != ""]; then
47
+ git checkout remotes/origin/master -- .ci
48
+ fi
49
fi
50
- bash .ci/before_install.sh
51
0 commit comments