summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormanojgudi2013-10-28 14:32:23 +0530
committermanojgudi2013-10-28 14:33:55 +0530
commit07532cc2da908522670b00c26fe440ca69a1720f (patch)
treebf2931c521ea605b7c5570214d3a2af7b3c26691
parent8f2eb237ccdc4b14a2ef6c489e9f50389be7bdde (diff)
downloadsciscipy-1.0.0-07532cc2da908522670b00c26fe440ca69a1720f.tar.gz
sciscipy-1.0.0-07532cc2da908522670b00c26fe440ca69a1720f.tar.bz2
sciscipy-1.0.0-07532cc2da908522670b00c26fe440ca69a1720f.zip
install script fix for amd64
-rwxr-xr-xinstall6
1 files changed, 4 insertions, 2 deletions
diff --git a/install b/install
index b4c6ddb..39e1055 100755
--- a/install
+++ b/install
@@ -1,4 +1,4 @@
-#/bin/bash
+#!/bin/bash
bold=$(tput bold)
red=$(tput setaf 1)
@@ -8,10 +8,12 @@ end=$(tput sgr 0)
# Define Hardware platform
platform=`uname -i`
-if [$platform == "x86_64"] then
+# Checking platforms
+if [[ $platform == "x86_64" ]] then
platform="amd64"
fi
+
echo "$bold $red Installing Dependencies $end"
echo "$bold $yel > Installing Scilab... $end"