]> git.lizzy.rs Git - torbrowser-launcher.git/blob - ppa_release.sh
AppArmor: allow start-tor-browser read access on dash.
[torbrowser-launcher.git] / ppa_release.sh
1 #!/bin/sh
2
3 # This script pushes updates to my Ubuntu PPA: https://launchpad.net/~micahflee/+archive/ppa
4 # If you want to use it, you'll need your own ~/.dput.cf and ssh key.
5 # More info: https://help.launchpad.net/Packaging/PPA/Uploading
6
7 VERSION=`cat share/torbrowser-launcher/version`
8
9 rm -rf deb_dist
10 python setup.py --command-packages=stdeb.command sdist_dsc
11 cd deb_dist/torbrowser-launcher-$VERSION
12 dpkg-buildpackage -S
13 cd ..
14 dput ppa:micahflee/ppa torbrowser-launcher_$VERSION-1_source.changes
15 cd ..