From 78c20689b3f58b354c3c1d2d4ca54d57844231d0 Mon Sep 17 00:00:00 2001 From: Arnaud Gardelein Date: Sat, 2 Feb 2013 22:08:40 +0100 Subject: [PATCH] FIXED: Typo in version argument ... to fast in writing patch ! --- ioscopy_app.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ioscopy_app.sh b/ioscopy_app.sh index 8b7701e..6981157 100755 --- a/ioscopy_app.sh +++ b/ioscopy_app.sh @@ -28,11 +28,11 @@ if [ $? -ne 0 ]; then fi # Validate version of IPython. Option name changed between 0.10 and 0.13. -if [ `$IPYTHON --version | tr -d . | cut -c 1-3` -lt "013" ]; then - echo IPython > 0.13 needed to run IOscopy +if [ "0`$IPYTHON --version | tr -d . | cut -c 1-3`" -lt "0013" ]; then + echo IPython '>' 0.13 needed to run IOscopy exit -elif [ `$IPYTHON --version | tr -d . | cut -c 1-3` -lt "013" ]; then - echo IPython > 0.13 needed to run IOscopy +elif [ "0`$IPYTHON --Version | tr -d . | cut -c 1-3`" -lt "0013" ]; then + echo IPython '>' 0.13 needed to run IOscopy exit fi -- 2.11.4.GIT