##// END OF EJS Templates
scripts: allow signing with a different key set with EMAIL
Andrew Shadura -
r5527:80b69729 stable
parent child Browse files
Show More
@@ -46,7 +46,8 b' echo'
46 echo -n "Enter \"pypi\" to upload Kallithea $version to pypi: "
46 echo -n "Enter \"pypi\" to upload Kallithea $version to pypi: "
47 read answer
47 read answer
48 [ "$answer" = "pypi" ]
48 [ "$answer" = "pypi" ]
49 python2 setup.py sdist upload --sign
49 extraargs=${EMAIL:+--identity=$EMAIL}
50 python2 setup.py sdist upload --sign $extraargs
50 xdg-open https://pypi.python.org/pypi/Kallithea
51 xdg-open https://pypi.python.org/pypi/Kallithea
51
52
52 echo "Uploading docs to pypi"
53 echo "Uploading docs to pypi"
General Comments 0
You need to be logged in to leave comments. Login now