From e87b377add8f533adfc8e5ea17fa432f284690bb Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Fri, 2 Jan 2015 09:23:55 +0000 Subject: [PATCH] pull: fix tap URL regex for devel/head-only. --- Library/Homebrew/cmd/pull.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/cmd/pull.rb b/Library/Homebrew/cmd/pull.rb index 594aaba651..b6725f7fb2 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