mirror of
https://github.com/onionshare/onionshare.git
synced 2025-06-06 22:09:15 -04:00
Merge branch '387-build-script-logic-fix' of https://github.com/mig5/onionshare into mig5-387-build-script-logic-fix
This commit is contained in:
commit
33a5065f41
1 changed files with 5 additions and 1 deletions
|
@ -12,10 +12,14 @@ rm -r deb_dist >/dev/null 2>&1
|
||||||
python3 setup.py --command-packages=stdeb.command bdist_deb
|
python3 setup.py --command-packages=stdeb.command bdist_deb
|
||||||
|
|
||||||
# return install instructions if onionshare builds properly
|
# return install instructions if onionshare builds properly
|
||||||
echo ""
|
|
||||||
if [[ $? -eq 0 ]]; then
|
if [[ $? -eq 0 ]]; then
|
||||||
|
# The build process in stdeb's util.py renames .dev to ~dev
|
||||||
|
# Adjust it here for the purposes of displaying the right filename
|
||||||
|
VERSION="${VERSION/.dev/~dev}"
|
||||||
|
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
|
else
|
||||||
echo "OnionShare failed to build!"
|
echo "OnionShare failed to build!"
|
||||||
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue