mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #8612 from mjaschen-forks/devel
Homebrew module: Added `+` and `.` characters to the package name regex.
This commit is contained in:
commit
9e0090e21b
1 changed files with 2 additions and 0 deletions
|
@ -112,6 +112,8 @@ class Homebrew(object):
|
||||||
|
|
||||||
VALID_PACKAGE_CHARS = r'''
|
VALID_PACKAGE_CHARS = r'''
|
||||||
\w # alphanumeric characters (i.e., [a-zA-Z0-9_])
|
\w # alphanumeric characters (i.e., [a-zA-Z0-9_])
|
||||||
|
. # dots
|
||||||
|
\+ # plusses
|
||||||
- # dashes
|
- # dashes
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue