aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike McQuaid2015-01-02 09:23:55 +0000
committerMike McQuaid2015-01-02 09:24:25 +0000
commite87b377add8f533adfc8e5ea17fa432f284690bb (patch)
tree4494cab9f3a8d051250c4cfd515c7a414d06636a
parent30ed74165e65c61189c77a555d61f250c65473b3 (diff)
downloadbrew-e87b377add8f533adfc8e5ea17fa432f284690bb.tar.bz2
pull: fix tap URL regex for devel/head-only.
-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