From 07532cc2da908522670b00c26fe440ca69a1720f Mon Sep 17 00:00:00 2001 From: manojgudi Date: Mon, 28 Oct 2013 14:32:23 +0530 Subject: install script fix for amd64 --- install | 6 ++++-- 1 file 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" -- cgit