From 7e5494e4de01f088fc581424b083fac5c7825004 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Sat, 23 Nov 2019 13:44:18 -0500 Subject: [PATCH] Fix Firefox publish script --- dist/firefox/publish-signed-beta.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dist/firefox/publish-signed-beta.py b/dist/firefox/publish-signed-beta.py index d69388bb3..3599faf48 100755 --- a/dist/firefox/publish-signed-beta.py +++ b/dist/firefox/publish-signed-beta.py @@ -226,8 +226,9 @@ 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']: + if not signing_check_response['files'][0]['download_url']: print('Error: AMO signing failed') + print(response.text) exit(1) print('\r') print('Self-hosted xpi package successfully signed.')