From 7a7754a3dd87a154fb5e498f559201e5e0d9c06c Mon Sep 17 00:00:00 2001 From: John Kleinschmidt Date: Sun, 16 Feb 2020 19:45:41 -0500 Subject: [PATCH] fix: don't include breakpad_symbols dir in dsym.zip (#22191) --- script/lib/util.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/lib/util.py b/script/lib/util.py index 9ce2705b1f8..48a303fd65d 100644 --- a/script/lib/util.py +++ b/script/lib/util.py @@ -120,8 +120,8 @@ def extract_zip(zip_path, destination): def make_zip(zip_file_path, files, dirs): safe_unlink(zip_file_path) if sys.platform == 'darwin': - files += dirs - execute(['zip', '-r', '-y', zip_file_path] + files) + allfiles = files + dirs + execute(['zip', '-r', '-y', zip_file_path] + allfiles) else: zip_file = zipfile.ZipFile(zip_file_path, "w", zipfile.ZIP_DEFLATED, allowZip64=True)