Add slash to valid characters for packages

To allow it to download packes from taps, or external commands like
caskroom/cask/brew-cask
pull/18777/head
Enric Lluelles 10 years ago committed by Matt Clay
parent 96fbe86f6a
commit 1780512ef5

@ -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…
Cancel
Save