Skip to content

Commit c923687

Browse files
committedAug 21, 2015
travis: do not upload conda package if branch is not master. fixes #55
1 parent 7f613d1 commit c923687

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ script:
2323
- make -C doc/manual html
2424
after_success:
2525
- anaconda -q login --hostname $(hostname) --username $binstar_login --password $binstar_password
26-
- anaconda -q upload --user $binstar_login --channel dev --force $HOME/miniconda/conda-bld/linux-64/artiq-*.tar.bz2
26+
- if [ "$TRAVIS_BRANCH" == "master" ]; then anaconda -q upload --user $binstar_login --channel dev --force $HOME/miniconda/conda-bld/linux-64/artiq-*.tar.bz2; fi
2727
- anaconda -q logout
2828
- coveralls
2929
notifications:

0 commit comments

Comments
 (0)
Please sign in to comment.