aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorMateusz Lenik2016-01-04 16:04:31 +0100
committerMartin Afanasjew2016-01-04 16:16:53 +0100
commit47afde940a70f2a3a597f01bf52f1b8ad096e65f (patch)
tree1a5ad0a923911478ab60d874320b5cd9c7810747 /Library/Homebrew
parent8f8c3cc1b195b29551c10fea40889dae92ac3b55 (diff)
downloadbrew-47afde940a70f2a3a597f01bf52f1b8ad096e65f.tar.bz2
formula: fix undefined method error
Fixes: Homebrew/homebrew#47673. Closes Homebrew/homebrew#47672. Signed-off-by: Martin Afanasjew <martin@afanasjew.de>
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/formula.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index e2f5bd961..95ac55eec 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -1495,7 +1495,7 @@ class Formula
# If the cellar only has one version installed, don't complain
# that we can't tell which one to keep. Don't complain at all if the
# only installed version is a pinned formula.
- opoo "Skipping #{full_name}: most recent version #{f.pkg_version} not installed"
+ opoo "Skipping #{full_name}: most recent version #{pkg_version} not installed"
end
eligible_for_cleanup
end