travis: upload noarch conda package correctly.

This commit is contained in:
whitequark 2015-10-21 20:08:16 +03:00
parent 5dc26ea490
commit ecd04cf68c
1 changed files with 2 additions and 2 deletions

View File

@ -39,8 +39,8 @@ script:
after_success: after_success:
# Upload Migen conda package to binstar # Upload Migen conda package to binstar
- anaconda login --hostname $(hostname) --username $binstar_login --password $binstar_password - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then anaconda login --hostname $(hostname) --username $binstar_login --password $binstar_password; fi
- anaconda upload --user $binstar_login --channel dev --force $HOME/miniconda/conda-bld/linux-64/migen-*.tar.bz2 - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then anaconda upload --user $binstar_login --channel dev --force $HOME/miniconda/conda-bld/noarch/migen-*.tar.bz2; fi
notifications: notifications:
email: false email: false