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 130c5de commit 5758626Copy full SHA for 5758626
.travis.yml
@@ -25,7 +25,7 @@ before_deploy:
25
if [ -z "$BEFORE_DEPLOY_RAN" ]; then
26
npm --no-git-tag-version version $RELEASE_VERSION
27
if [ "$TRAVIS_BRANCH" == "master" ]; then export NPM_TAG=stable; fi
28
- if [ "$TRAVIS_BRANCH" == hotfix/* ]; then export NPM_TAG=hotfix; fi
+ if [[ "$TRAVIS_BRANCH" == hotfix/* ]]; then export NPM_TAG=hotfix; fi # double brackets are important for matching the wildcard
29
git config --global user.email $(git log --pretty=format:"%ae" -n1)
30
git config --global user.name $(git log --pretty=format:"%an" -n1)
31
export BEFORE_DEPLOY_RAN=true
0 commit comments