pull: fix tap URL regex for devel/head-only.

This commit is contained in:
Mike McQuaid 2015-01-02 09:23:55 +00:00
parent 30ed74165e
commit e87b377add

View File

@ -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