From 0cf9e44367393e2680c10c5256bafbfe892e00ed Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Fri, 19 May 2017 14:34:05 +1000 Subject: [PATCH] Fix location of echo so that the return code check doesn't always succeed --- install/build_deb.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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