Homebrew module: Added `+` and `.` characters to the package name regex.

Solves installation failures for packages like `bonnie++` or
`virtualhost.sh` as described in #8413.
pull/8612/head
Marcus Jaschen 10 years ago
parent 9edf3a749a
commit c6ac95d403

@ -112,6 +112,8 @@ class Homebrew(object):
VALID_PACKAGE_CHARS = r'''
\w # alphanumeric characters (i.e., [a-zA-Z0-9_])
. # dots
\+ # plusses
- # dashes
'''

Loading…
Cancel
Save