diff --git a/Library/Homebrew/system_config.rb b/Library/Homebrew/system_config.rb index 067f7500abe44..69a218df70229 100644 --- a/Library/Homebrew/system_config.rb +++ b/Library/Homebrew/system_config.rb @@ -121,10 +121,10 @@ def dump_tap_config(tap, out = $stdout) end if tap.installed? - out.puts "#{tap_name} origin: #{tap.remote}" + out.puts "#{tap_name} origin: #{tap.remote}" if tap.remote != tap.default_remote out.puts "#{tap_name} HEAD: #{tap.git_head || "(none)"}" out.puts "#{tap_name} last commit: #{tap.git_last_commit || "never"}" - out.puts "#{tap_name} branch: #{tap.git_branch || "(none)"}" + out.puts "#{tap_name} branch: #{tap.git_branch || "(none)"}" if tap.git_branch != "master" end if (json_file = Homebrew::API::HOMEBREW_CACHE_API/json_file_name) && json_file.exist?