mirror of
https://github.com/onionshare/onionshare.git
synced 2025-08-23 05:05:15 -04:00
added script to publish to PPA
This commit is contained in:
parent
60d97cfa5e
commit
5a3957d8c4
1 changed files with 15 additions and 0 deletions
15
ppa_release.sh
Executable file
15
ppa_release.sh
Executable file
|
@ -0,0 +1,15 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# This script pushes updates to my Ubuntu PPA: https://launchpad.net/~micahflee/+archive/ppa
|
||||||
|
# If you want to use it, you'll need your own ~/.dput.cf and ssh key.
|
||||||
|
# More info: https://help.launchpad.net/Packaging/PPA/Uploading
|
||||||
|
|
||||||
|
VERSION=`cat version`
|
||||||
|
|
||||||
|
rm -rf deb_dist
|
||||||
|
python setup.py --command-packages=stdeb.command sdist_dsc
|
||||||
|
cd deb_dist/onionshare-$VERSION
|
||||||
|
dpkg-buildpackage -S
|
||||||
|
cd ..
|
||||||
|
dput ppa:micahflee/ppa onionshare_$VERSION-1_source.changes
|
||||||
|
cd ..
|
Loading…
Add table
Add a link
Reference in a new issue