| Index: third_party/crashpad/update.py
|
| diff --git a/third_party/crashpad/update.py b/third_party/crashpad/update.py
|
| index c692c817b9ce48d328af7ff9288004b5421d1807..7781e26afd8fdb6a7aaaa060618fd1ff38a9b1cd 100755
|
| --- a/third_party/crashpad/update.py
|
| +++ b/third_party/crashpad/update.py
|
| @@ -7,6 +7,7 @@
|
|
|
| import argparse
|
| import os
|
| +import pipes
|
| import re
|
| import subprocess
|
| import sys
|
| @@ -131,7 +132,8 @@ def main(args):
|
| 'filter-branch',
|
| '--force',
|
| '--index-filter',
|
| - 'git rm --cached --ignore-unmatch ' + ' '.join(parsed.exclude),
|
| + 'git rm --cached --ignore-unmatch ' +
|
| + ' '.join(pipes.quote(path) for path in parsed.exclude),
|
| revision_old + '..UPDATE_TO'],
|
| cwd=toplevel,
|
| shell=IS_WINDOWS)
|
|
|