Specific twine repository when publishing packages

* modules/jenkins/files/slave_scripts/pypi-upload.sh: Specify pypi as
the repository when uploading python packages to pypi. Not doing this
results in a key error when twine attempts to look up the repository.

Change-Id: I7e3c6398710e9b69d1c4576a1e2417e4ca156b97
This commit is contained in:
Clark Boylan 2013-10-03 15:13:41 -07:00
parent 05c36049e7
commit ff66eb610a

View File

@ -33,4 +33,4 @@ curl --fail -o $FILENAME http://$TARBALL_SITE/$PROJECT/$FILENAME
# Make sure we actually got a gzipped file
file -b $FILENAME | grep gzip
twine upload $FILENAME
twine upload -r pypi $FILENAME