Skip to content

Commit

Permalink
Add prints when creating exefs patches
Browse files Browse the repository at this point in the history
  • Loading branch information
henriquegemignani committed Sep 12, 2023
1 parent 39dcf4d commit e55dc30
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tools/create_exefs_patches.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,9 @@ def main():
exefs_patches.mkdir(parents=True, exist_ok=True)

for version, exefs_hash in VERSIONS.items():
exefs_patches.joinpath(f"{exefs_hash}.ips").write_bytes(create_patch(version))
out_path = exefs_patches.joinpath(f"{exefs_hash}.ips")
out_path.write_bytes(create_patch(version))
print(f"Created {out_path}")


if __name__ == '__main__':
Expand Down

0 comments on commit e55dc30

Please sign in to comment.