From 36bfc3a254c71498830188b207abfdc420525397 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ors=C3=A1k=20Maro=C5=A1?= <30839163+see-quick@users.noreply.github.com> Date: Tue, 9 Aug 2022 00:25:58 +0200 Subject: [PATCH] MINOR: Update scala version in bin scripts to 2.13.8 (#12477) This PR updates scala versions inside `bin/scripts` (i.e., `kafka-run-class.sh`). #12273 only modified `gradle.properties`. Reviewers: Ismael Juma Signed-off-by: morsak --- bin/kafka-run-class.sh | 2 +- bin/windows/kafka-run-class.bat | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/kafka-run-class.sh b/bin/kafka-run-class.sh index 490f930b8cc..a9096ea0216 100755 --- a/bin/kafka-run-class.sh +++ b/bin/kafka-run-class.sh @@ -48,7 +48,7 @@ should_include_file() { base_dir=$(dirname $0)/.. if [ -z "$SCALA_VERSION" ]; then - SCALA_VERSION=2.13.6 + SCALA_VERSION=2.13.8 if [[ -f "$base_dir/gradle.properties" ]]; then SCALA_VERSION=`grep "^scalaVersion=" "$base_dir/gradle.properties" | cut -d= -f 2` fi diff --git a/bin/windows/kafka-run-class.bat b/bin/windows/kafka-run-class.bat index 26ef84a4f5c..df1e20ba11c 100755 --- a/bin/windows/kafka-run-class.bat +++ b/bin/windows/kafka-run-class.bat @@ -27,7 +27,7 @@ set BASE_DIR=%CD% popd IF ["%SCALA_VERSION%"] EQU [""] ( - set SCALA_VERSION=2.13.6 + set SCALA_VERSION=2.13.8 ) IF ["%SCALA_BINARY_VERSION%"] EQU [""] (