This commit is contained in:
Freddy Martinez 2015-05-28 04:52:27 -05:00
parent 246d43d8e6
commit 41671e58df

View File

@ -1,14 +1,21 @@
#!/bin/sh #!/bin/bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd )"
cd $DIR
VERSION=`cat version` VERSION=`cat version`
# clean up from last build # clean up from last build
rm -r deb_dist rm -r deb_dist >/dev/null 2>&1
# build binary package # build binary package
python setup.py --command-packages=stdeb.command bdist_deb python setup.py --command-packages=stdeb.command bdist_deb
# install it # return install instructions if onionshare builds properly
echo "" if [$? -eq 0] then
echo "To install, run:" echo ""
echo "sudo dpkg -i deb_dist/onionshare_$VERSION-1_all.deb" echo "To install, run:"
echo "sudo dpkg -i deb_dist/onionshare_$VERSION-1_all.deb"
else
echo "OnionShare failed to build!"
fi