From 14aa2d6047c50e9fedeaba15e81727a3560ecfd4 Mon Sep 17 00:00:00 2001 From: mj Date: Thu, 2 Apr 2015 03:27:45 +0200 Subject: [PATCH] FIX install.sh: "sh: 26: [: 1: unexpected operator" --- tools/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/install.sh b/tools/install.sh index 364e890..d33ced7 100755 --- a/tools/install.sh +++ b/tools/install.sh @@ -23,7 +23,7 @@ if [ "$SHELL" != "$(which zsh)" ]; then $CMD_PREFIX apt-get -yq install curl dialog git nano zsh fi -if [ 1 == 2 ]; then +if [ "1" == "2" ]; then #sudo apt-get -yq python-setuptools #sudo easy_install pip -- 2.0.0