aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMisty De Meo2014-05-06 22:39:12 -0700
committerMisty De Meo2014-05-07 09:11:14 -0700
commit21c2bf40f7b2893b7ed024237adb2b84124e8ab9 (patch)
tree69b63b9fc1628e028e6a71633af23c8ba1ec342f
parent313f8b137feab9a75b050ae4b6361839ca2f6856 (diff)
downloadbrew-21c2bf40f7b2893b7ed024237adb2b84124e8ab9.tar.bz2
brew-pull: update for new tap structure
-rwxr-xr-xLibrary/Contributions/cmd/brew-pull.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Contributions/cmd/brew-pull.rb b/Library/Contributions/cmd/brew-pull.rb
index 42ab844ea..9cc6b478e 100755
--- a/Library/Contributions/cmd/brew-pull.rb
+++ b/Library/Contributions/cmd/brew-pull.rb
@@ -32,7 +32,7 @@ ARGV.named.each do |arg|
if tap_name = tap(url)
user = url_match[1].downcase
- tap_dir = HOMEBREW_REPOSITORY/"Library/Taps/#{user}-#{tap_name}"
+ tap_dir = HOMEBREW_REPOSITORY/"Library/Taps/#{user}/homebrew-#{tap_name}"
safe_system "brew", "tap", "#{user}/#{tap_name}" unless tap_dir.exist?
Dir.chdir tap_dir
else