aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorNeville Li <neville@spotify.com>2014-05-18 13:31:23 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-05-18 13:31:23 -0700
commite06e4b0affc00bc15498313a36edbc9b7e2aaae2 (patch)
tree672817f330cea57f0e2e84ca1fafed70afaa058a /bin
parentf8e611955096c5c1c7db5764b9d2851b1d295f0d (diff)
downloadspark-e06e4b0affc00bc15498313a36edbc9b7e2aaae2.tar.gz
spark-e06e4b0affc00bc15498313a36edbc9b7e2aaae2.tar.bz2
spark-e06e4b0affc00bc15498313a36edbc9b7e2aaae2.zip
Fix spark-submit path in spark-shell & pyspark
Author: Neville Li <neville@spotify.com> Closes #812 from nevillelyh/neville/v1.0 and squashes the following commits: 0dc33ed [Neville Li] Fix spark-submit path in pyspark becec64 [Neville Li] Fix spark-submit path in spark-shell
Diffstat (limited to 'bin')
-rwxr-xr-xbin/pyspark2
-rwxr-xr-xbin/spark-shell8
2 files changed, 5 insertions, 5 deletions
diff --git a/bin/pyspark b/bin/pyspark
index 9e1364e44c..3908ffe799 100755
--- a/bin/pyspark
+++ b/bin/pyspark
@@ -27,7 +27,7 @@ SCALA_VERSION=2.10
if [[ "$@" = *--help ]] || [[ "$@" = *-h ]]; then
echo "Usage: ./bin/pyspark [options]"
- ./bin/spark-submit --help 2>&1 | grep -v Usage 1>&2
+ $FWDIR/bin/spark-submit --help 2>&1 | grep -v Usage 1>&2
exit 0
fi
diff --git a/bin/spark-shell b/bin/spark-shell
index c158683ab3..850e9507ec 100755
--- a/bin/spark-shell
+++ b/bin/spark-shell
@@ -28,15 +28,15 @@ esac
# Enter posix mode for bash
set -o posix
+## Global script variables
+FWDIR="$(cd `dirname $0`/..; pwd)"
+
if [[ "$@" = *--help ]] || [[ "$@" = *-h ]]; then
echo "Usage: ./bin/spark-shell [options]"
- ./bin/spark-submit --help 2>&1 | grep -v Usage 1>&2
+ $FWDIR/bin/spark-submit --help 2>&1 | grep -v Usage 1>&2
exit 0
fi
-## Global script variables
-FWDIR="$(cd `dirname $0`/..; pwd)"
-
function main(){
if $cygwin; then
# Workaround for issue involving JLine and Cygwin