Skip to content

Commit

Permalink
exclude repo- and path-tracking packages
Browse files Browse the repository at this point in the history
  • Loading branch information
IanButterworth committed Dec 31, 2021
1 parent ef83be5 commit 6669d17
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 @@ -1922,7 +1922,7 @@ function print_status(env::EnvCache, old_env::Union{Nothing,EnvCache}, registrie
printstyled(io, " [", string(pkg.uuid)[1:8], "] "; color = :light_black)
diff ? print_diff(io, pkg.old, pkg.new, longest_name_length) : print_single(io, pkg.new, longest_name_length)

if !latest_version && !diff
if !latest_version && !diff && !Operations.is_tracking_repo(pkg.new) && !Operations.is_tracking_path(pkg.new)
packages_holding_back, _ = pkg.compat_data
if isempty(packages_holding_back)
print(io, "")
Expand Down

0 comments on commit 6669d17

Please sign in to comment.