File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1966,7 +1966,7 @@ end
1966
1966
1967
1967
@testset " Dummy Pkg prompt" begin
1968
1968
# do this in an empty depot to test default for new users
1969
- withenv (" JULIA_DEPOT_PATH" => mktempdir (), " JULIA_LOAD_PATH" => nothing ) do
1969
+ withenv (" JULIA_DEPOT_PATH" => join ( mktempdir (), Sys . iswindows () ? " ; " : " : " ), " JULIA_LOAD_PATH" => nothing ) do
1970
1970
prompt = readchomp (` $(Base. julia_cmd ()[1 ]) --startup-file=no -e "using REPL; print(REPL.Pkg_promptf())"` )
1971
1971
@test prompt == " (@v$(VERSION . major) .$(VERSION . minor) ) pkg> "
1972
1972
end
@@ -1975,7 +1975,7 @@ end
1975
1975
tmp_55850 = mktempdir ()
1976
1976
tmp_sym_link = joinpath (tmp_55850, " sym" )
1977
1977
symlink (tmp_55850, tmp_sym_link; dir_target= true )
1978
- withenv (" JULIA_DEPOT_PATH" => tmp_sym_link, " JULIA_LOAD_PATH" => nothing ) do
1978
+ withenv (" JULIA_DEPOT_PATH" => join ( tmp_sym_link, Sys . iswindows () ? " ; " : " : " ) , " JULIA_LOAD_PATH" => nothing ) do
1979
1979
prompt = readchomp (` $(Base. julia_cmd ()[1 ]) --startup-file=no -e "using REPL; print(REPL.projname(REPL.find_project_file()))"` )
1980
1980
@test prompt == " @v$(VERSION . major) .$(VERSION . minor) "
1981
1981
end
You can’t perform that action at this time.
0 commit comments