Skip to content

Commit 36bfc3a

Browse files
authored
MINOR: Update scala version in bin scripts to 2.13.8 (apache#12477)
This PR updates scala versions inside `bin/scripts` (i.e., `kafka-run-class.sh`). apache#12273 only modified `gradle.properties`. Reviewers: Ismael Juma <ismael@juma.me.uk> Signed-off-by: morsak <xorsak02@stud.fit.vutbr.cz>
1 parent 48caba9 commit 36bfc3a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

bin/kafka-run-class.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ should_include_file() {
4848
base_dir=$(dirname $0)/..
4949

5050
if [ -z "$SCALA_VERSION" ]; then
51-
SCALA_VERSION=2.13.6
51+
SCALA_VERSION=2.13.8
5252
if [[ -f "$base_dir/gradle.properties" ]]; then
5353
SCALA_VERSION=`grep "^scalaVersion=" "$base_dir/gradle.properties" | cut -d= -f 2`
5454
fi

bin/windows/kafka-run-class.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ set BASE_DIR=%CD%
2727
popd
2828

2929
IF ["%SCALA_VERSION%"] EQU [""] (
30-
set SCALA_VERSION=2.13.6
30+
set SCALA_VERSION=2.13.8
3131
)
3232

3333
IF ["%SCALA_BINARY_VERSION%"] EQU [""] (

0 commit comments

Comments
 (0)