aboutsummaryrefslogtreecommitdiff
path: root/make-distribution.sh
diff options
context:
space:
mode:
authorNicholas Chammas <nicholas.chammas@gmail.com>2015-11-23 22:22:50 -0800
committerReynold Xin <rxin@databricks.com>2015-11-23 22:22:50 -0800
commit6cf51a7007bd72eb93ade149ca9fc53be5b32a17 (patch)
treed26228045ad17d6620269aacc0959ccb773d582d /make-distribution.sh
parent8d57524662fad4a0760f3bc924e690c2a110e7f7 (diff)
downloadspark-6cf51a7007bd72eb93ade149ca9fc53be5b32a17.tar.gz
spark-6cf51a7007bd72eb93ade149ca9fc53be5b32a17.tar.bz2
spark-6cf51a7007bd72eb93ade149ca9fc53be5b32a17.zip
[SPARK-11903] Remove --skip-java-test
Per [pwendell's comments on SPARK-11903](https://issues.apache.org/jira/browse/SPARK-11903?focusedCommentId=15021511&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-15021511) I'm removing this dead code. If we are concerned about preserving compatibility, I can instead leave the option in and add a warning. For example: ```sh echo "Warning: '--skip-java-test' is deprecated and has no effect." ;; ``` cc pwendell, srowen Author: Nicholas Chammas <nicholas.chammas@gmail.com> Closes #9924 from nchammas/make-distribution.
Diffstat (limited to 'make-distribution.sh')
-rwxr-xr-xmake-distribution.sh3
1 files changed, 0 insertions, 3 deletions
diff --git a/make-distribution.sh b/make-distribution.sh
index d7d27e253f..7b417fe7cf 100755
--- a/make-distribution.sh
+++ b/make-distribution.sh
@@ -69,9 +69,6 @@ while (( "$#" )); do
echo "Error: '--with-hive' is no longer supported, use Maven options -Phive and -Phive-thriftserver"
exit_with_usage
;;
- --skip-java-test)
- SKIP_JAVA_TEST=true
- ;;
--with-tachyon)
SPARK_TACHYON=true
;;