aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/pull.rb
diff options
context:
space:
mode:
authorMike McQuaid2015-01-02 09:23:55 +0000
committerMike McQuaid2015-01-02 09:24:25 +0000
commitcbfe2bb4d8ddd137a95dd23e0107a6e56f846580 (patch)
tree7b7b8830f26b6b7735a7882e3399dc43f3cd4e55 /Library/Homebrew/cmd/pull.rb
parentcb412be50429809c0de4ace67834b4145263fe37 (diff)
downloadhomebrew-cbfe2bb4d8ddd137a95dd23e0107a6e56f846580.tar.bz2
pull: fix tap URL regex for devel/head-only.
Diffstat (limited to 'Library/Homebrew/cmd/pull.rb')
-rw-r--r--Library/Homebrew/cmd/pull.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/pull.rb b/Library/Homebrew/cmd/pull.rb
index 594aaba65..b6725f7fb 100644
--- a/Library/Homebrew/cmd/pull.rb
+++ b/Library/Homebrew/cmd/pull.rb
@@ -6,7 +6,7 @@ require 'formula'
module Homebrew
def tap arg
- match = arg.match(%r[homebrew-(\w+)/])
+ match = arg.match(%r[homebrew-([\w-]+)/])
match[1].downcase if match
end