Skip to content

Commit

Permalink
add LOAD_PATH for fallback message
Browse files Browse the repository at this point in the history
  • Loading branch information
vchuravy committed Sep 21, 2023
1 parent b514f93 commit c7c81f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base/client.jl
Original file line number Diff line number Diff line change
Expand Up @@ -448,8 +448,8 @@ function run_main_repl(interactive::Bool, quiet::Bool, banner::Symbol, history_f
end
else
# otherwise provide a simple fallback
if interactive && !quiet
@warn "REPL provider not available: using basic fallback"
if !fallback_repl && interactive && !quiet
@warn "REPL provider not available: using basic fallback" LOAD_PATH=join(Base.LOAD_PATH, Sys.iswindows() ? ';' : ':')
end
banner == :no || Base.banner(short=banner==:short)
let input = stdin
Expand Down

0 comments on commit c7c81f4

Please sign in to comment.