1
Index: firefox-58.0~b2+build1/python/mozbuild/mozbuild/shellutil.py
2
===================================================================
3
--- firefox-58.0~b2+build1.orig/python/mozbuild/mozbuild/shellutil.py
4
+++ firefox-58.0~b2+build1/python/mozbuild/mozbuild/shellutil.py
6
whitespace=r'[\t\r\n ]+',
9
- special=r'[<>&|`~(){}$;\*\?]',
10
+ special=r'[<>&|`(){}$;\*\?]',
11
backslashed=r'\\[^\\]',
16
# This regexp contains the same characters as all those listed in
17
# UNQUOTED_TOKENS_RE. Please keep in sync.
18
-SHELL_QUOTE_RE = re.compile(r'[\\\t\r\n \'\"#<>&|`~(){}$;\*\?]')
19
+SHELL_QUOTE_RE = re.compile(r'[\\\t\r\n \'\"#<>&|`(){}$;\*\?]')
22
class MetaCharacterException(Exception):