Repository: spark Updated Branches: refs/heads/master 0d01e85f4 -> c11949878
SPARK-2587: Fix error message in make-distribution.sh make-distribution.sh gives a slightly off error message when using --with-hive. Author: Mark Wagner <[email protected]> Closes #1489 from wagnermarkd/SPARK-2587 and squashes the following commits: 7b5d3ff [Mark Wagner] SPARK-2587: Fix error message in make-distribution.sh Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/c1194987 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/c1194987 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/c1194987 Branch: refs/heads/master Commit: c11949878d650ed776b190444b198dbdacb0c5d7 Parents: 0d01e85 Author: Mark Wagner <[email protected]> Authored: Sat Jul 19 20:24:13 2014 -0700 Committer: Patrick Wendell <[email protected]> Committed: Sat Jul 19 20:24:13 2014 -0700 ---------------------------------------------------------------------- make-distribution.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/c1194987/make-distribution.sh ---------------------------------------------------------------------- diff --git a/make-distribution.sh b/make-distribution.sh index b5a90f0..c08093f 100755 --- a/make-distribution.sh +++ b/make-distribution.sh @@ -58,7 +58,7 @@ while (( "$#" )); do exit_with_usage ;; --with-hive) - echo "Error: '--with-hive' is no longer supported, use Maven option -Pyarn" + echo "Error: '--with-hive' is no longer supported, use Maven option -Phive" exit_with_usage ;; --skip-java-test)
