From 6adc73b92e0709d44299913510c2c4e32be6c86c Mon Sep 17 00:00:00 2001 From: Julian Oes Date: Tue, 10 Dec 2019 12:19:36 +0100 Subject: [PATCH] travis-ci: only upload one file --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4b8fbb02..b71742a7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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";