aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/untap.rb
diff options
context:
space:
mode:
authorJack Nagel2014-04-25 18:58:16 -0500
committerJack Nagel2014-04-25 18:58:16 -0500
commitbdee729a41fbaec0607f26749cc09730792ec77e (patch)
treed78554929220c07805cc60f61d545325636dec7e /Library/Homebrew/cmd/untap.rb
parentb40a3413e342a700d5f5c31d153ea8613e99f5f7 (diff)
downloadbrew-bdee729a41fbaec0607f26749cc09730792ec77e.tar.bz2
Yield absolute paths from find_formula
Diffstat (limited to 'Library/Homebrew/cmd/untap.rb')
-rw-r--r--Library/Homebrew/cmd/untap.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/untap.rb b/Library/Homebrew/cmd/untap.rb
index bbb223238..bba10b07a 100644
--- a/Library/Homebrew/cmd/untap.rb
+++ b/Library/Homebrew/cmd/untap.rb
@@ -18,7 +18,7 @@ module Homebrew extend self
raise "No such tap!" unless tapd.directory?
files = []
- tapd.find_formula { |file| files << tapd.join(file) }
+ tapd.find_formula { |file| files << file }
unlink_tap_formula(files)
tapd.rmtree
tapd.dirname.rmdir_if_possible