Skip to content

Commit

Permalink
Merge pull request #22057 from charris/quiet-anaconda-upload
Browse files Browse the repository at this point in the history
MAINT: Quiet the anaconda uploads.
  • Loading branch information
charris committed Jul 29, 2022
2 parents 9f97c3a + f849a53 commit 2fdf3c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/wheels/upload_wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ upload_wheels() {
# sdists are located under dist folder when built through setup.py
if compgen -G "./dist/*.gz"; then
echo "Found sdist"
anaconda -t ${TOKEN} upload --skip -u ${ANACONDA_ORG} ./dist/*.gz
anaconda -q -t ${TOKEN} upload --skip -u ${ANACONDA_ORG} ./dist/*.gz
elif compgen -G "./wheelhouse/*.whl"; then
echo "Found wheel"
anaconda -t ${TOKEN} upload --skip -u ${ANACONDA_ORG} ./wheelhouse/*.whl
anaconda -q -t ${TOKEN} upload --skip -u ${ANACONDA_ORG} ./wheelhouse/*.whl
else
echo "Files do not exist"
return 1
Expand Down

0 comments on commit 2fdf3c7

Please sign in to comment.