From aacb909ab17692e38162d0855e8ec8fe196e9333 Mon Sep 17 00:00:00 2001 From: Nikhil Badyal Date: Wed, 19 Mar 2025 23:23:04 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Reverted=20hardcoded=20cli?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app.py b/src/app.py index c3791d9..8383a9e 100644 --- a/src/app.py +++ b/src/app.py @@ -30,8 +30,7 @@ class APP(object): self.app_name = app_name self.app_version = config.env.str(f"{app_name}_VERSION".upper(), None) self.experiment = False - # Temp fix until i get time for new options support - self.cli_dl = "https://github.com/inotia00/revanced-cli" + self.cli_dl = config.env.str(f"{app_name}_CLI_DL".upper(), config.global_cli_dl) 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(), [])