mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
Make our regex match the homebrew tap upstream regex.
Fixes #312 Fixes #297
This commit is contained in:
committed by
Matt Clay
parent
1537c297b3
commit
4ada937207
@@ -52,7 +52,7 @@ homebrew_tap: tap=homebrew/dupes,homebrew/science state=present
|
||||
|
||||
def a_valid_tap(tap):
|
||||
'''Returns True if the tap is valid.'''
|
||||
regex = re.compile(r'^(\S+)/(homebrew-)?(\w+)$')
|
||||
regex = re.compile(r'^([\w-]+)/(homebrew-)?([\w-]+)$')
|
||||
return regex.match(tap)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user