🎨 Use inotiaa cli

This commit is contained in:
Nikhil Badyal
2025-03-16 20:58:55 +05:30
committed by Nikhil Badyal
parent b21fc40562
commit 9ab6e31774
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -30,7 +30,8 @@ class APP(object):
self.app_name = app_name
self.app_version = config.env.str(f"{app_name}_VERSION".upper(), None)
self.experiment = False
self.cli_dl = config.env.str(f"{app_name}_CLI_DL".upper(), config.global_cli_dl)
# Temp fix until i get time for new options support
self.cli_dl = "https://github.com/revanced/revanced-cli"
self.patches_dl = config.env.str(f"{app_name}_PATCHES_DL".upper(), config.global_patches_dl)
self.exclude_request: list[str] = config.env.list(f"{app_name}_EXCLUDE_PATCH".upper(), [])
self.include_request: list[str] = config.env.list(f"{app_name}_INCLUDE_PATCH".upper(), [])
+1 -1
View File
@@ -22,7 +22,7 @@ class Parser(object):
PATCHES_ARG = "-p"
OUTPUT_ARG = "-o"
KEYSTORE_ARG = "--keystore"
OPTIONS_ARG = "--options"
OPTIONS_ARG = "--legacy-options"
def __init__(self: Self, patcher: Patches, config: RevancedConfig) -> None:
self._PATCHES: list[str] = []