Skip to content

Commit

Permalink
Fix spacing in 'if statement' comparing linux arch
Browse files Browse the repository at this point in the history
  • Loading branch information
cas-- committed Jul 19, 2011
1 parent 3ecc501 commit 59bc14a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OLS_Upgrader/ols-upgrader.sh 100755 → 100644
Expand Up @@ -20,7 +20,7 @@ fi

#Determine if we are in Windows on cygwin
if [ "$OSTYPE" == 'linux-gnu' ]; then
if ["$(arch)" == 'x86-64' ]; then
if [ "$(arch)" == 'x86-64' ]; then
bindir=linbin64
export PATH=linbin64\:$PATH
else
Expand Down

0 comments on commit 59bc14a

Please sign in to comment.