diff options
author | manojgudi | 2013-10-28 14:32:23 +0530 |
---|---|---|
committer | manojgudi | 2013-10-28 14:33:55 +0530 |
commit | 07532cc2da908522670b00c26fe440ca69a1720f (patch) | |
tree | bf2931c521ea605b7c5570214d3a2af7b3c26691 | |
parent | 8f2eb237ccdc4b14a2ef6c489e9f50389be7bdde (diff) | |
download | sciscipy-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-x | install | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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" |