~mozillateam/firefox/firefox-beta.xenial

« back to all changes in this revision

Viewing changes to debian/build/xpi-id.py

  • Committer: Rico Tzschichholz
  • Date: 2022-12-04 18:04:07 UTC
  • Revision ID: ricotz@ubuntu.com-20221204180407-8vpdcat5o7d224a4
* Update generated uniffi-js on armhf and i386
  - debian/build/rules.mk
  - debian/patches/uniffi-js.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
        exit(1)
12
12
 
13
13
    json_doc = json.loads(zipfile.ZipFile(sys.argv[1]).open('manifest.json').read().decode('utf-8').strip())
14
 
    gecko_id = json_doc["browser_specific_settings"]["gecko"]["id"]
 
14
    gecko_id = json_doc["applications"]["gecko"]["id"]
15
15
 
16
16
    assert gecko_id
17
17
    print("%s" % gecko_id)