aboutsummaryrefslogtreecommitdiff
path: root/repl-bin
diff options
context:
space:
mode:
authorUbuntu <ubuntu@ip-10-196-90-205.us-west-1.compute.internal>2013-07-18 00:51:18 +0000
committerUbuntu <ubuntu@ip-10-196-90-205.us-west-1.compute.internal>2013-07-18 00:51:18 +0000
commit88a0823c58304fa1b290667d95a482105a8a5f52 (patch)
treeb5dd5a8880a49bf2492f1db5d538b37c2340ea6f /repl-bin
parentcad48edb70c58a48f66851e963f51db712ab7863 (diff)
downloadspark-88a0823c58304fa1b290667d95a482105a8a5f52.tar.gz
spark-88a0823c58304fa1b290667d95a482105a8a5f52.tar.bz2
spark-88a0823c58304fa1b290667d95a482105a8a5f52.zip
Consistently invoke bash with /usr/bin/env bash in scripts to make code more portable (JIRA Ticket SPARK-817)
Diffstat (limited to 'repl-bin')
-rwxr-xr-xrepl-bin/src/deb/bin/run2
-rwxr-xr-xrepl-bin/src/deb/bin/spark-executor2
-rwxr-xr-xrepl-bin/src/deb/bin/spark-shell2
3 files changed, 3 insertions, 3 deletions
diff --git a/repl-bin/src/deb/bin/run b/repl-bin/src/deb/bin/run
index 0e5100e00b..8b5d8300f2 100755
--- a/repl-bin/src/deb/bin/run
+++ b/repl-bin/src/deb/bin/run
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
#
# Licensed to the Apache Software Foundation (ASF) under one or more
diff --git a/repl-bin/src/deb/bin/spark-executor b/repl-bin/src/deb/bin/spark-executor
index d3c1c23413..bcfae22677 100755
--- a/repl-bin/src/deb/bin/spark-executor
+++ b/repl-bin/src/deb/bin/spark-executor
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
#
# Licensed to the Apache Software Foundation (ASF) under one or more
diff --git a/repl-bin/src/deb/bin/spark-shell b/repl-bin/src/deb/bin/spark-shell
index 8b258543db..ec7e33e1e3 100755
--- a/repl-bin/src/deb/bin/spark-shell
+++ b/repl-bin/src/deb/bin/spark-shell
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
#
# Licensed to the Apache Software Foundation (ASF) under one or more