From 1f1575b794011b3ac6c72fb3440a6b192387f633 Mon Sep 17 00:00:00 2001 From: Fredrik Wahlberg Date: Wed, 28 Jan 2004 21:51:48 +0000 Subject: [PATCH] == should be =, bash... --- installer/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/install.sh b/installer/install.sh index 90f316a..26be6e6 100644 --- a/installer/install.sh +++ b/installer/install.sh @@ -4,7 +4,7 @@ OPTIK_VER=1.4.1 # Do we have the dns modules?? ./check_modules.py dns -if [ "$?" == "1" ]; then +if [ "$?" = "1" ]; then DNSPYTHON=dnspython-$DNSPYTHON_VER tar zxf $DNSPYTHON.tar.gz cd $DNSPYTHON @@ -13,7 +13,7 @@ if [ "$?" == "1" ]; then fi ./check_modules.py optparse -if [ "$?" == "1" ]; then +if [ "$?" = "1" ]; then OPTIK=dnspython-$OPTIK_VER tar zxf $OPTIK.tar.gz cd $OPTIK