Skip to content

Commit

Permalink
fix rm: project.extras also contain dependency names
Browse files Browse the repository at this point in the history
(cherry picked from commit 27d452d, PR #985)
  • Loading branch information
00vareladavid authored and fredrikekre committed Feb 11, 2019
1 parent b0c2241 commit b13b473
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Operations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1139,7 +1139,8 @@ function rm(ctx::Context, pkgs::Vector{PackageSpec})
@info "No changes"
return
end
deps_names = collect(keys(ctx.env.project.deps))
deps_names = append!(collect(keys(ctx.env.project.deps)),
collect(keys(ctx.env.project.extras)))
filter!(ctx.env.project.targets) do (target, deps)
!isempty(filter!(in(deps_names), deps))
end
Expand Down
12 changes: 12 additions & 0 deletions test/pkg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -612,6 +612,18 @@ end
end
end

#issue #876
@testset "targets should survive add/rm" begin
temp_pkg_dir() do project_path; cd_tempdir() do tmpdir
cp(joinpath(@__DIR__, "project", "good", "pkg.toml"), "Project.toml")
targets = deepcopy(Pkg.Types.read_project("Project.toml").targets)
Pkg.activate(".")
Pkg.add("Example")
Pkg.rm("Example")
@test targets == Pkg.Types.read_project("Project.toml").targets
end end
end

include("repl.jl")
include("api.jl")
include("registry.jl")
Expand Down

0 comments on commit b13b473

Please sign in to comment.