Skip to content

Commit

Permalink
travis: fix error when building a tag
Browse files Browse the repository at this point in the history
also, fix tabs on gitter webhook (I think...)
  • Loading branch information
scztt committed Mar 14, 2015
1 parent b288627 commit 8114328
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,11 @@ before_deploy:
- export BUILD_PREFIX=$TRAVIS_REPO_SLUG/$TRAVIS_OS_NAME
- export FWD_HTML='<html><head><meta http-equiv="refresh" content="0; url=SC-'$COMMIT_NAME'.zip" /></head></html>'
# put everything to be archived in artifacts/
- mkdir $HOME/artifacts
- mkdir -p $HOME/artifacts
- cd Install
- zip -r $HOME/artifacts/SC-$COMMIT_NAME.zip SuperCollider
- mkdir -p "${TRAVIS_BRANCH%/*}"
- mkdir -p "$HOME/artifacts/${TRAVIS_BRANCH%/*}"
- mkdir -p "$HOME/artifacts/${TRAVIS_TAG%/*}"
- echo $FWD_HTML > $HOME/artifacts/$TRAVIS_BRANCH-latest.html
- 'if [[ $TRAVIS_TAG != "head" ]]; then echo $FWD_HTML > $HOME/artifacts/$TRAVIS_TAG.html; fi;'

Expand Down Expand Up @@ -82,13 +83,12 @@ deploy:
all_branches: true

notifications:
on_success: change
on_failure: change

webhooks:
urls:
- https://webhooks.gitter.im/e/51b9b53ca50a7bfca97d
on_success: change
on_failure: always
on_success: change
on_failure: change
webhooks:
urls:
- https://webhooks.gitter.im/e/51b9b53ca50a7bfca97d
on_success: change
on_failure: always


0 comments on commit 8114328

Please sign in to comment.