mozbuild: remove tilde char from special character blacklist as win32 short path contains tilde character.

This commit is contained in:
roytam1 2021-09-23 00:22:57 +08:00
commit c45d02ceb2

View file

@ -26,7 +26,7 @@ UNQUOTED_TOKENS_RE = _tokens2re(
whitespace=r'[\t\r\n ]+',
quote=r'[\'"]',
comment='#',
special=r'[<>&|`~(){}$;\*\?]',
special=r'[<>&|`(){}$;\*\?]',
backslashed=r'\\[^\\]',
)