diff --git a/install/build_deb.sh b/install/build_deb.sh index 995ee009..dc2fbaa2 100755 --- a/install/build_deb.sh +++ b/install/build_deb.sh @@ -12,10 +12,10 @@ rm -r deb_dist >/dev/null 2>&1 python setup.py --command-packages=stdeb.command bdist_deb # return install instructions if onionshare builds properly -if [$? -eq 0] then - echo "" +echo "" +if [[ $? -eq 0 ]]; then echo "To install, run:" echo "sudo dpkg -i deb_dist/onionshare_$VERSION-1_all.deb" -else - echo "OnionShare failed to build!" +else + echo "OnionShare failed to build!" fi