Skip to content

Commit c7c81f4

Browse files
committed
add LOAD_PATH for fallback message
1 parent b514f93 commit c7c81f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

base/client.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -448,8 +448,8 @@ function run_main_repl(interactive::Bool, quiet::Bool, banner::Symbol, history_f
448448
end
449449
else
450450
# otherwise provide a simple fallback
451-
if interactive && !quiet
452-
@warn "REPL provider not available: using basic fallback"
451+
if !fallback_repl && interactive && !quiet
452+
@warn "REPL provider not available: using basic fallback" LOAD_PATH=join(Base.LOAD_PATH, Sys.iswindows() ? ';' : ':')
453453
end
454454
banner == :no || Base.banner(short=banner==:short)
455455
let input = stdin

0 commit comments

Comments
 (0)