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)