mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 08:13:08 +00:00
Homebrew module: Added + and . characters to the package name regex.
Solves installation failures for packages like `bonnie++` or `virtualhost.sh` as described in #8413.
This commit is contained in:
@@ -112,6 +112,8 @@ class Homebrew(object):
|
||||
|
||||
VALID_PACKAGE_CHARS = r'''
|
||||
\w # alphanumeric characters (i.e., [a-zA-Z0-9_])
|
||||
. # dots
|
||||
\+ # plusses
|
||||
- # dashes
|
||||
'''
|
||||
|
||||
|
||||
Reference in New Issue
Block a user