From 1364e4836e2775e9f110e4e2f83278bd9d8b2d4d Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Thu, 5 Dec 2019 09:36:11 -0500 Subject: [PATCH] Fix publishing script for Firefox dev build --- dist/firefox/publish-signed-beta.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dist/firefox/publish-signed-beta.py b/dist/firefox/publish-signed-beta.py index 3599faf48..4d71f4ee3 100755 --- a/dist/firefox/publish-signed-beta.py +++ b/dist/firefox/publish-signed-beta.py @@ -226,6 +226,8 @@ with open(unsigned_xpi_filepath, 'rb') as f: exit(1) if not signing_check_response['files'] or len(signing_check_response['files']) == 0: continue + if not signing_check_response['files'][0]['signed']: + continue if not signing_check_response['files'][0]['download_url']: print('Error: AMO signing failed') print(response.text)