Skip to content

Commit 5c976d5

Browse files
committed
ci/after-success.sh: fix condition
1 parent 8d8fde5 commit 5c976d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/after-success.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ main() {
1111
git push -fq https://$GH_TOKEN@github.com/$TRAVIS_REPO_SLUG.git gh-pages && echo OK
1212
}
1313

14-
if [ $TRAVIS_BRANCH = master && $TRAVIS_PULL_REQUEST=false ]; then
14+
if [ $TRAVIS_BRANCH = master ] && [ $TRAVIS_PULL_REQUEST = false ]; then
1515
main
1616
fi

0 commit comments

Comments
 (0)