# HG changeset patch # User Andrew Shadura # Date 2015-10-02 19:49:49 # Node ID 80b69729a0e25b366d2ea9e9892643e35423977f # Parent 84bb160aac6d768645415582d5714aaaee9a1bd6 scripts: allow signing with a different key set with EMAIL diff --git a/scripts/make-release b/scripts/make-release --- a/scripts/make-release +++ b/scripts/make-release @@ -46,7 +46,8 @@ echo echo -n "Enter \"pypi\" to upload Kallithea $version to pypi: " read answer [ "$answer" = "pypi" ] -python2 setup.py sdist upload --sign +extraargs=${EMAIL:+--identity=$EMAIL} +python2 setup.py sdist upload --sign $extraargs xdg-open https://pypi.python.org/pypi/Kallithea echo "Uploading docs to pypi"