Skip to content

Commit

Permalink
Separate twine upload command to new line
Browse files Browse the repository at this point in the history
  • Loading branch information
chdastolfo committed Nov 15, 2021
1 parent 20e9af2 commit 8692374
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,13 @@ endef

pypi_upload_test: install
$(call header,"Uploading new version to PyPi - test")
@. $(INSTALL_DIR)/bin/activate; python setup.py sdist twine upload --repository testpypi dist/*
@. $(INSTALL_DIR)/bin/activate; python setup.py sdist
@twine upload --repository testpypi dist/*

pypi_upload: install
$(call header,"Uploading new version to PyPi")
@. $(INSTALL_DIR)/bin/activate; python setup.py sdist twine upload dist/*
@. $(INSTALL_DIR)/bin/activate; python setup.py sdist
@twine upload dist/*

docs: install
$(call header,"Building docs")
Expand Down

0 comments on commit 8692374

Please sign in to comment.