From 8c30ebe3c01687f27ec814aac82f997e1429c173 Mon Sep 17 00:00:00 2001 From: Greg Weber Date: Mon, 5 Sep 2011 23:11:14 -0700 Subject: [PATCH] fix shell equality --- install-all.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install-all.sh b/install-all.sh index 918522e0..b517c960 100755 --- a/install-all.sh +++ b/install-all.sh @@ -30,7 +30,7 @@ for pkg in "${pkgs[@]}"; do ( cd "./$pkg" - if [ $1 == "--clean" ]; then + if [ "$1" = "--clean" ]; then $CABAL clean fi @@ -45,7 +45,7 @@ for pkg in "${pkgs[@]}"; do $CABAL test $CABAL check - if [ $1 != "--fast" ]; then + if [ "$1" != "--fast" ]; then $CABAL haddock --executables fi ./Setup.lhs install