Skip to content

Commit 2663c94

Browse files
committed
chore: fix the branch checking condition
1 parent e33fb50 commit 2663c94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.scripts/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if [[ $TRAVIS_PULL_REQUEST = "true" ]]; then
77
exit 0
88
fi
99

10-
if [[ $TRAVIS_BRANCH = "master" ]]; then
10+
if [[ $TRAVIS_BRANCH != "master" ]]; then
1111
echo 'This is not a master branch. Exiting the release script.'
1212

1313
exit 0

0 commit comments

Comments
 (0)