Skip to content
Snippets Groups Projects
Commit 40b39151 authored by hyuraku's avatar hyuraku
Browse files

rename the variable

parent bfa9938e
No related branches found
No related tags found
No related merge requests found
......@@ -679,17 +679,17 @@ module Homebrew
message = nil
taps = {
repos = {
"Homebrew/brew" => HOMEBREW_REPOSITORY,
"Homebrew/homebrew-core" => CoreTap.instance.path,
}
%w[cask cask-drivers cask-fonts cask-versions].each do |tap|
cask_tap = Tap.fetch "homebrew", tap
taps[cask_tap.full_name] = cask_tap.path if cask_tap.installed?
repos[cask_tap.full_name] = cask_tap.path if cask_tap.installed?
end
taps.each do |name, path|
repos.each do |name, path|
status = path.cd do
`git status --untracked-files=all --porcelain 2>/dev/null`
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment