From c6c60ca65816362ccceaf01763e6aaef86fa23ee Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Fri, 27 Apr 2018 12:28:59 -0400 Subject: [PATCH] fix py script for new template location --- dist/firefox/publish-signed-beta.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/firefox/publish-signed-beta.py b/dist/firefox/publish-signed-beta.py index 4d84b3bd8..d7d96c835 100755 --- a/dist/firefox/publish-signed-beta.py +++ b/dist/firefox/publish-signed-beta.py @@ -251,7 +251,7 @@ with open(updates_json_filepath) as f: f.close() previous_version = updates_json['addons'][extension_id]['updates'][0]['version'] if LooseVersion(version) > LooseVersion(previous_version): - with open(os.path.join(projdir, 'platform', 'webext', 'updates.template.json')) as f: + with open(os.path.join(projdir, 'dist', 'firefox', 'updates.template.json')) as f: template_json = Template(f.read()) f.close() updates_json = template_json.substitute(version=version)