From c384805f22c3d4bd58e2449ff4a07c0b3f3193a3 Mon Sep 17 00:00:00 2001 From: Matt Bacchi Date: Fri, 14 Sep 2018 13:18:47 -0400 Subject: [PATCH] Update Mac package name being uploaded Fixes https://github.com/brave/brave-browser/issues/1129 --- script/upload.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/upload.py b/script/upload.py index 67435e9325d..48e8f5cca9a 100755 --- a/script/upload.py +++ b/script/upload.py @@ -93,7 +93,7 @@ def yield_brave_packages(dir, channel, version): for _, _, files in os.walk(dir): for file in files: if PLATFORM == 'darwin': - if re.match(r'Brave-Browser-' + channel.capitalize() + r'.*\.dmg$', file): + if re.match(r'Brave Browser ' + channel.capitalize() + r'.*\.dmg$', file): yield file elif PLATFORM == 'linux': if re.match(r'brave-browser-' + channel + '_' + version + r'.*\.deb$', file) \