Skip to content

Commit

Permalink
Fix Firefox publish script
Browse files Browse the repository at this point in the history
  • Loading branch information
gorhill committed Nov 23, 2019
1 parent 5158d72 commit 7e5494e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dist/firefox/publish-signed-beta.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,9 @@ def input_secret(prompt, token):
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.')
Expand Down

0 comments on commit 7e5494e

Please sign in to comment.