Skip to content

Commit ac8c59a

Browse files
Fix typo in travis.yml
1 parent 070ed6e commit ac8c59a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,11 +149,11 @@ script:
149149
150150
after_success:
151151
- |
152-
if [[ "TRAVIS_BUILD_STAGE_NAME != "Deploy" ]]; then
152+
if [[ $TRAVIS_BUILD_STAGE_NAME != "Deploy" ]]; then
153153
travis_terminate 0
154154
fi
155155
- |
156-
if [[ "$TRAVIS_EVENT_TYPE" == "api" && $TRAVIS_BRANCH != "master" ]]; then
156+
if [[ $TRAVIS_EVENT_TYPE == "api" && $TRAVIS_BRANCH != "master" ]]; then
157157
export RELEASE_VERSION=$(echo $TRAVIS_BRANCH | egrep -o '[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+');
158158
if [[ "$RELEASE_VERSION" != "" && "$TRAVIS_BRANCH" == "v$RELEASE_VERSION" ]]; then
159159
echo "Releasing $RELEASE_VERSION";

0 commit comments

Comments
 (0)