summaryrefslogtreecommitdiff
path: root/install/ppa_release.sh
diff options
context:
space:
mode:
Diffstat (limited to 'install/ppa_release.sh')
-rwxr-xr-xinstall/ppa_release.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/install/ppa_release.sh b/install/ppa_release.sh
deleted file mode 100755
index cb1a4cdb..00000000
--- a/install/ppa_release.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/bash
-
-# 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
-
-DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd )"
-cd $DIR
-
-VERSION=`cat share/version.txt`
-
-rm -rf deb_dist >/dev/null 2>&1
-python3 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 ..