Add slash to valid characters for packages
To allow it to download packes from taps, or external commands like caskroom/cask/brew-cask
This commit is contained in:
parent
96fbe86f6a
commit
1780512ef5
1 changed files with 1 additions and 0 deletions
|
@ -116,6 +116,7 @@ class Homebrew(object):
|
|||
VALID_PACKAGE_CHARS = r'''
|
||||
\w # alphanumeric characters (i.e., [a-zA-Z0-9_])
|
||||
. # dots
|
||||
/ # slash (for taps)
|
||||
\+ # plusses
|
||||
- # dashes
|
||||
'''
|
||||
|
|
Loading…
Reference in a new issue