~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-10-07 20:25:50 UTC
  • Revision ID: ricotz@ubuntu.com-20221007202550-0ntpaam0s1rpkvcb
* New upstream release from the beta channel (FIREFOX_106_0b9_BUILD1)
* Fix FTBFS on i386 caused by SSE2 assumptions
  - debian/patches/libwebrtc-i386-sse2-ftbfs.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)