Skip to content

Commit

Permalink
Merge pull request #142 from mavlink/fix-win-again
Browse files Browse the repository at this point in the history
travis-ci: only upload one file
  • Loading branch information
julianoes authored Dec 10, 2019
2 parents 404cb23 + 6adc73b commit 91b563b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,12 @@ script:
- if [[ "${BUILD_TARGET}" = "windows64" ]]; then
mkdir wheelhouse;
ls dist/*any.whl | sed -e 'p;s/any/win_amd64/' | xargs -n2 cp;
mv dist/*.whl wheelhouse/;
mv dist/*win_amd64.whl wheelhouse/;
fi
- if [[ "${BUILD_TARGET}" = "windows32" ]]; then
mkdir wheelhouse;
ls dist/*any.whl | sed -e 'p;s/any/win32/' | xargs -n2 cp;
mv dist/*.whl wheelhouse/;
mv dist/*win32.whl wheelhouse/;
fi
- if [[ ! -z "${TRAVIS_TAG}" ]]; then
echo "Deploying to PyPi";
Expand Down

0 comments on commit 91b563b

Please sign in to comment.