Merge branch 'freddymartinez9-master'

This commit is contained in:
Micah Lee 2015-06-16 11:03:03 -07:00
commit 2e39382126

View File

@ -11,7 +11,11 @@ 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
if [$? -eq 0] then
echo "" echo ""
echo "To install, run:" echo "To install, run:"
echo "sudo dpkg -i deb_dist/onionshare_$VERSION-1_all.deb" echo "sudo dpkg -i deb_dist/onionshare_$VERSION-1_all.deb"
else
echo "OnionShare failed to build!"
fi