Skip to content
This repository has been archived by the owner on Nov 23, 2017. It is now read-only.

Commit

Permalink
Bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pwendell committed Feb 3, 2014
1 parent 215fb50 commit fe6bc37
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions shark/init.sh
Expand Up @@ -4,7 +4,7 @@ pushd /root

if [ -d "shark" ]; then
echo "Shark seems to be installed. Exiting."
return 0
return
fi

# Github tag:
Expand Down Expand Up @@ -47,7 +47,7 @@ else
;;
*)
echo "ERROR: Unknown Shark version"
return -1
return
esac

echo "Unpacking Shark"
Expand Down
5 changes: 3 additions & 2 deletions spark/init.sh
Expand Up @@ -4,7 +4,7 @@ pushd /root

if [ -d "spark" ]; then
echo "Spark seems to be installed. Exiting."
return 0
return
fi

# Github tag:
Expand Down Expand Up @@ -52,9 +52,10 @@ else
else
wget http://s3.amazonaws.com/spark-related-packages/spark-0.9.0-incubating-bin-cdh4.tgz
fi
;;
*)
echo "ERROR: Unknown Spark version"
return -1
return
esac

echo "Unpacking Spark"
Expand Down

0 comments on commit fe6bc37

Please sign in to comment.