Skip to content

Commit

Permalink
Update base/loading.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
IanButterworth committed Jan 9, 2023
1 parent 07203d2 commit c69bf43
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion base/loading.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2645,7 +2645,11 @@ end
return true
end
end
tracked_path = unsafe_string(JLOptions().tracked_path)
tracked_path = if JLOptions().tracked_path == NULL
""
else
unsafe_string(JLOptions().tracked_path)
end
for chi in includes
f, ftime_req = chi.filename, chi.mtime
if !isfile(f)
Expand Down

0 comments on commit c69bf43

Please sign in to comment.