Skip to content

Commit

Permalink
Add --skip-cli-updates by default to the scala command (#20900)
Browse files Browse the repository at this point in the history
Based on #20859

Solve #20859 (comment)
  • Loading branch information
hamzaremmal authored Jul 1, 2024
2 parents b018397 + 22931f1 commit 771d1db
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions dist/bin/scala
Original file line number Diff line number Diff line change
Expand Up @@ -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[@]}"
Expand Down
5 changes: 3 additions & 2 deletions dist/bin/scala.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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 )

Expand Down

0 comments on commit 771d1db

Please sign in to comment.