Skip to content

Commit

Permalink
update update-v3-manifest.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jingjingxyk committed Dec 2, 2023
1 parent f55d0ad commit 72f2768
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/update-v3-manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def set_manifest_data(manifest, key, value):


def override_manifest(manifest):
with open(manifest_file_firefox, mode='w') as f:
with open(manifest_file_tmp, mode='w') as f:
json.dump(manifest, f, ensure_ascii=False, indent=2)


Expand All @@ -44,7 +44,7 @@ def override_manifest(manifest):

project_dir = os.path.abspath(os.path.dirname(__file__) + '/../')
manifest_file = project_dir + '/extension/manifest.json'
manifest_file_firefox = project_dir + '/var/extension-tmp/manifest.json'
manifest_file_tmp = project_dir + '/var/extension-tmp/manifest.json'
manifest_data = get_manifest_data()

browser = 'firefox'
Expand Down

0 comments on commit 72f2768

Please sign in to comment.