From 18a91354abdf793a569a84046f3bf2016b2ccd03 Mon Sep 17 00:00:00 2001 From: jerryshao Date: Sun, 16 Sep 2018 20:29:01 +0800 Subject: [PATCH] Fix the nonexist profile name in release script --- dev/create-release/release-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/create-release/release-build.sh b/dev/create-release/release-build.sh index 73610a3335910..ca066bed133d2 100755 --- a/dev/create-release/release-build.sh +++ b/dev/create-release/release-build.sh @@ -271,7 +271,7 @@ if [[ "$1" == "package" ]]; then BINARY_PKGS_ARGS["hadoop2.7"]="-Phadoop-2.7 $HIVE_PROFILES" if ! is_dry_run; then BINARY_PKGS_ARGS["hadoop2.6"]="-Phadoop-2.6 $HIVE_PROFILES" - BINARY_PKGS_ARGS["without-hadoop"]="-Pwithout-hadoop" + BINARY_PKGS_ARGS["without-hadoop"]="-Phadoop-provided" if [[ $SPARK_VERSION < "2.2." ]]; then BINARY_PKGS_ARGS["hadoop2.4"]="-Phadoop-2.4 $HIVE_PROFILES" BINARY_PKGS_ARGS["hadoop2.3"]="-Phadoop-2.3 $HIVE_PROFILES"