Skip to content

Commit

Permalink
Merge #1056
Browse files Browse the repository at this point in the history
1056: fix absolutifying path when looking for deps r=fredrikekre a=KristofferC

paths was previously given as relative the project file

fixes #1047

Co-authored-by: Kristoffer Carlsson <kcarlsson89@gmail.com>
  • Loading branch information
bors[bot] and KristofferC committed Feb 12, 2019
2 parents 707636f + eb63467 commit c8fbb80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Operations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ function load_deps(ctx::Context, pkg::PackageSpec)::Dict{String,UUID}
end
return Dict{String,UUID}()
else
path = source_path(pkg)
path = project_rel_path(ctx, source_path(pkg))
project_file = projectfile_path(path; strict=true)
if project_file !== nothing
project = read_project(project_file)
Expand Down

0 comments on commit c8fbb80

Please sign in to comment.