From 785d5822e5c025e9635a5d4c4592f041e362db5e Mon Sep 17 00:00:00 2001 From: Dongjoon Hyun Date: Tue, 26 Jan 2021 15:11:07 +0900 Subject: [PATCH] [SPARK-34218][INFRA][FOLLOWUP] Fix Scala 2.13 profile typo in publish-snapshot ### What changes were proposed in this pull request? This is a follow-up of #31311 and fixes a typo in Scala 2.13 profile section in `publish-snapshot` command. ### Why are the changes needed? To fix snapshot publishing for Scala 2.13. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Manual. Closes #31338 from dongjoon-hyun/SPARK-34218-2. Authored-by: Dongjoon Hyun Signed-off-by: HyukjinKwon --- 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 dfe85080b4..f657c0fb16 100755 --- a/dev/create-release/release-build.sh +++ b/dev/create-release/release-build.sh @@ -381,7 +381,7 @@ if [[ "$1" == "publish-snapshot" ]]; then if [[ $PUBLISH_SCALA_2_13 = 1 ]]; then ./dev/change-scala-version.sh 2.13 - $MVN -DzincPort=$ZINC_PORT --settings $tmp_settings -DskipTests $SCALA_2_12_PROFILES $PUBLISH_PROFILES clean deploy + $MVN -DzincPort=$ZINC_PORT --settings $tmp_settings -DskipTests $SCALA_2_13_PROFILES $PUBLISH_PROFILES clean deploy fi rm $tmp_settings