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 bc91453 commit 89d239cCopy full SHA for 89d239c
base/file.jl
@@ -340,7 +340,7 @@ function delayed_delete_dll(path)
340
@debug "Could not delete DLL most likely because it is loaded, moving to a temporary path" path temp_path
341
mkpath(delayed_delete_ref())
342
io = last(mktemp(delayed_delete_ref(); cleanup=false))
343
- println(io, abspath(temp_path)) # record the temporary path for Pkg.gc()
+ print(io, temp_path) # record the temporary path for Pkg.gc()
344
close(io)
345
rename(path, temp_path) # do not call mv which could recursively call rm(path)
346
end
0 commit comments