summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Jacq <mig@mig5.net>2017-05-19 14:34:05 +1000
committerMiguel Jacq <mig@mig5.net>2017-05-19 14:34:05 +1000
commit0cf9e44367393e2680c10c5256bafbfe892e00ed (patch)
tree2d8cae542d2062a6d636bd5ba535c6f1bff01348
parentd3eeda887bbd9eaffbd559bcd1d989ce732aa44d (diff)
downloadonionshare-0cf9e44367393e2680c10c5256bafbfe892e00ed.tar.gz
onionshare-0cf9e44367393e2680c10c5256bafbfe892e00ed.zip
Fix location of echo so that the return code check doesn't always succeed
-rwxr-xr-xinstall/build_deb.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/install/build_deb.sh b/install/build_deb.sh
index 05a37822..51738e02 100755
--- a/install/build_deb.sh
+++ b/install/build_deb.sh
@@ -12,8 +12,8 @@ rm -r deb_dist >/dev/null 2>&1
python3 setup.py --command-packages=stdeb.command bdist_deb
# return install instructions if onionshare builds properly
-echo ""
if [[ $? -eq 0 ]]; then
+ echo ""
echo "To install, run:"
echo "sudo dpkg -i deb_dist/onionshare_$VERSION-1_all.deb"
else