From 02b8b728cb943c1313b7659ccf319d8579d035d9 Mon Sep 17 00:00:00 2001 From: Hamza REMMAL Date: Mon, 1 Jul 2024 10:29:16 +0200 Subject: [PATCH] Add --skip-cli-updates by default to the scala command --- dist/bin/scala | 1 + dist/bin/scala.bat | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dist/bin/scala b/dist/bin/scala index 71747a8e9e20..35efdfc38d96 100755 --- a/dist/bin/scala +++ b/dist/bin/scala @@ -59,6 +59,7 @@ done # SCALA_CLI_CMD_BASH is an array, set by cli-common-platform eval "${SCALA_CLI_CMD_BASH[@]}" \ "--prog-name scala" \ + "--skip-cli-updates" \ "--cli-default-scala-version \"$SCALA_VERSION\"" \ "-r \"$MVN_REPOSITORY\"" \ "${scala_args[@]}" diff --git a/dist/bin/scala.bat b/dist/bin/scala.bat index d473facbbb1c..7418909da263 100644 --- a/dist/bin/scala.bat +++ b/dist/bin/scala.bat @@ -21,8 +21,9 @@ call :setScalaOpts call "%_PROG_HOME%\bin\cli-common-platform.bat" -@rem SCALA_CLI_CMD_WIN is an array, set in cli-common-platform.bat -call %SCALA_CLI_CMD_WIN% "--prog-name" "scala" "--cli-default-scala-version" "%_SCALA_VERSION%" "-r" "%MVN_REPOSITORY%" %* +@rem SCALA_CLI_CMD_WIN is an array, set in cli-common-platform.bat. +@rem WE NEED TO PASS '--skip-cli-updates' for JVM launchers but we actually don't need it for native launchers +call %SCALA_CLI_CMD_WIN% "--prog-name" "scala" "--skip-cli-updates" "--cli-default-scala-version" "%_SCALA_VERSION%" "-r" "%MVN_REPOSITORY%" %* if not %ERRORLEVEL%==0 ( set _EXITCODE=1& goto end )