mirror of
https://github.com/onionshare/onionshare.git
synced 2024-12-28 00:39:37 -05:00
fix for #188
This commit is contained in:
parent
246d43d8e6
commit
41671e58df
19
build_deb.sh
19
build_deb.sh
@ -1,14 +1,21 @@
|
||||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd )"
|
||||
cd $DIR
|
||||
|
||||
VERSION=`cat version`
|
||||
|
||||
# clean up from last build
|
||||
rm -r deb_dist
|
||||
rm -r deb_dist >/dev/null 2>&1
|
||||
|
||||
# build binary package
|
||||
python setup.py --command-packages=stdeb.command bdist_deb
|
||||
|
||||
# install it
|
||||
echo ""
|
||||
echo "To install, run:"
|
||||
echo "sudo dpkg -i deb_dist/onionshare_$VERSION-1_all.deb"
|
||||
# return install instructions if onionshare builds properly
|
||||
if [$? -eq 0] then
|
||||
echo ""
|
||||
echo "To install, run:"
|
||||
echo "sudo dpkg -i deb_dist/onionshare_$VERSION-1_all.deb"
|
||||
else
|
||||
echo "OnionShare failed to build!"
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user