From bc2ef7ba4190f25ec285b8a5609c3d92a3b25b7d Mon Sep 17 00:00:00 2001 From: Joshua Bussdieker Date: Mon, 19 Mar 2012 22:05:49 -0700 Subject: [PATCH] Fix bug in pb option --- scripts/install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install b/scripts/install index 9a532e6..31524a3 100755 --- a/scripts/install +++ b/scripts/install @@ -24,7 +24,7 @@ read_command_line() { GO_SOURCE_URL=$i ;; -pb|--with-protobuf) - INSTALL_PB=true + INSTALL_PB="true" ;; -h|--help) show_usage @@ -162,7 +162,7 @@ main() { if [[ "$?" == "1" ]]; then install_gpkg install_gb - if [ $INSTALL_PB == "true" ]; then + if [ "$INSTALL_PB" == "true" ]; then install_goprotobuf fi fi