1
0
Fork 1
mirror of https://github.com/zen-browser/desktop.git synced 2025-07-08 00:10:00 +02:00

chore: Update surfer.json file paths in update_ff.py

This commit is contained in:
Mauro Balades 2024-07-06 22:45:07 +02:00
parent 428eb56cea
commit a259c40209
3 changed files with 3 additions and 941 deletions

View file

@ -10,13 +10,13 @@ def update_ff():
def get_version_before():
global last_version
with open("gluon.json", "r") as f:
with open("surfer.json", "r") as f:
data = json.load(f)
last_version = data["version"]["version"]
def get_version_after():
global new_version
with open("gluon.json", "r") as f:
with open("surfer.json", "r") as f:
data = json.load(f)
new_version = data["version"]["version"]