Skip to content

Commit

Permalink
Removed explicitly absolute path
Browse files Browse the repository at this point in the history
  • Loading branch information
Gollor committed May 17, 2017
1 parent 49abbf3 commit eadb699
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions base/loading.jl
Original file line number Diff line number Diff line change
Expand Up @@ -273,8 +273,7 @@ function _include_dependency(_path::AbstractString)
path = joinpath(dirname(prev), _path)
end
if myid() == 1 && _track_dependencies[]
apath = abspath(path)
push!(_require_dependencies, (apath, mtime(apath)))
push!(_require_dependencies, (path, mtime(path)))
end
return path, prev
end
Expand Down

0 comments on commit eadb699

Please sign in to comment.