Release tarball in both gztar and bztar formats.

This commit is contained in:
Alessio Treglia 2012-03-23 19:44:22 +01:00
parent 835c019b78
commit 03cdc0d4ec
1 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,8 @@
#!/bin/bash
## ./retrieve_changelog -r tag:0.7.1.. > ChangeLog
python setup.py sdist
gpg --armor --sign --detach-sig dist/*.tar.gz
python setup.py sdist --formats=gztar,bztar
tarballs=`ls dist`
for tarball in ${tarballs}; do
gpg --armor --sign --detach-sig dist/${tarball} ;
done