We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 813bfa5 commit d7034e5Copy full SHA for d7034e5
base/file.jl
@@ -293,7 +293,7 @@ function rm(path::AbstractString; force::Bool=false, recursive::Bool=false)
293
# ensure that temp_path is on the same drive as path to avoid issue #59589
294
@debug "Could not delete DLL most likely because it is loaded, moving to a temporary path" path temp_path
295
Base.open(delayed_delete_list(), "a") do io
296
- println(io, temp_path) # record the temporary path for Pkg.gc()
+ println(io, abspath(temp_path)) # record the temporary path for Pkg.gc()
297
end
298
rename(path, temp_path) # do not call mv which could recursively call rm(path)
299
return
0 commit comments