Skip to content

Commit

Permalink
Merge pull request #729 from jupyter-incubator/devstein/fix-deploy-sc…
Browse files Browse the repository at this point in the history
…ript

Fix Deploy Script Upload Command
  • Loading branch information
devstein authored Aug 27, 2021
2 parents 72f8d69 + 26442fb commit fd6c825
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
set -e

cd hdijupyterutils
python setup.py sdist && python twine upload dist/*
python setup.py sdist && twine upload dist/*
cd ..

cd autovizwidget
python setup.py sdist && python twine upload dist/*
python setup.py sdist && twine upload dist/*
cd ..

cd sparkmagic
python setup.py sdist && python twine upload dist/*
python setup.py sdist && twine upload dist/*
cd ..

0 comments on commit fd6c825

Please sign in to comment.