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 264f4a4 commit 19cf293Copy full SHA for 19cf293
base/loading.jl
@@ -3121,7 +3121,7 @@ end
3121
# point to an unreadable directory, make sure we can `stat` the
3122
# file before comparing it with `modpath`.
3123
isreadable = iszero(@ccall jl_fs_access(stdlib_path::Cstring, 0x04::Cint)::Cint)
3124
- if isreadable && !samefile(stdlib_path, modpath)
+ if !(isreadable && samefile(stdlib_path, modpath))
3125
@debug "Rejecting cache file $cachefile because it is for file $(includes[1].filename) not file $modpath"
3126
return true # cache file was compiled from a different path
3127
end
0 commit comments