Skip to content
This repository has been archived by the owner on Oct 11, 2020. It is now read-only.

Commit

Permalink
fix(travis/auto_tag): invert return value of need_new_tag
Browse files Browse the repository at this point in the history
  • Loading branch information
a-teammate committed Nov 12, 2017
1 parent 2511fb4 commit 451fa42
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tool/travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@ external_pull_request() {
# there already is a tag on the specified commit.
need_new_tag() {
if test -n "$TRAVIS_TAG"; then
true
false
else
export current_tag=`git tag --contains`
if test -n "$current_tag"; then
true
else
false
else
true
fi
fi
}
Expand Down

0 comments on commit 451fa42

Please sign in to comment.