1
0
Fork 0
mirror of https://github.com/Radiquum/anixart-patcher.git synced 2025-09-07 19:53:50 +05:00

feat: add patch init arg

This commit is contained in:
Kentai Radiquum 2025-09-03 16:40:15 +05:00
parent 2fef0a32b7
commit 2c8af07a67
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
3 changed files with 69 additions and 7 deletions

View file

@ -47,8 +47,9 @@ parser = argparse.ArgumentParser(prog="anixart patcher")
parser.add_argument("--config", help="path to config.json file", default="config.json")
parser.add_argument("--no-decompile", action="store_true")
parser.add_argument("--no-compile", action="store_true")
parser.add_argument("--patch", action="store_true")
parser.add_argument("--sign", action="store_true")
parser.add_argument("--patch", action="store_true", help="only patch decompiled")
parser.add_argument("--sign", action="store_true", help="only sign compiled apk")
parser.add_argument("--init", action="store_true", help="init a new patch")
args = parser.parse_args()