We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4b7a3d commit 992009fCopy full SHA for 992009f
1 file changed
make.sh
@@ -71,7 +71,7 @@ cp -a src/META-INF pkg/xpi-eff
71
# Remove the 'applications' manifest key from the crx version of the extension and change the 'author' string to a hash
72
python2.7 -c "import json; m=json.loads(open('pkg/crx/manifest.json').read()); e=m['author']; m['author']={'email': e}; del m['applications']; open('pkg/crx/manifest.json','w').write(json.dumps(m,indent=4,sort_keys=True))"
73
# Remove the 'update_url' manifest key from the xpi version of the extension delivered to AMO
74
-python2.7 -c "import json; m=json.loads(open('pkg/xpi-amo/manifest.json').read()); del m['applications']['gecko']['update_url']; open('pkg/xpi-amo/manifest.json','w').write(json.dumps(m,indent=4,sort_keys=True))"
+python2.7 -c "import json; m=json.loads(open('pkg/xpi-amo/manifest.json').read()); del m['applications']['gecko']['update_url']; m['applications']['gecko']['id'] = 'https-everywhere@eff.org'; open('pkg/xpi-amo/manifest.json','w').write(json.dumps(m,indent=4,sort_keys=True))"
75
76
# If the --remove-update-channel flag is set, ensure the extension is unable to update
77
if [ "$1" == "--remove-update-channel" -o "$2" == "--remove-update-channel" ]; then
0 commit comments