Skip to content

Commit

Permalink
Fix auto update with magisk
Browse files Browse the repository at this point in the history
`changelog` is required, even when we don't have any changelog file
  • Loading branch information
randshell authored Nov 29, 2023
1 parent 6aaa2c4 commit a14e269
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ def create_updater_json(project_tag: str):
updater ={
"version": project_tag,
"versionCode": int(project_tag.replace(".", "").replace("-", "")),
"zipUrl": f"https://github.com/ViRb3/magisk-frida/releases/download/{project_tag}/MagiskFrida-{project_tag}.zip"
"zipUrl": f"https://github.com/ViRb3/magisk-frida/releases/download/{project_tag}/MagiskFrida-{project_tag}.zip",
"changelog": ""
}

with open(PATH_BUILD.joinpath("updater.json"), "w", newline="\n") as f:
Expand Down

0 comments on commit a14e269

Please sign in to comment.