mirror of
https://github.com/sotam0316/docker-py-revanced.git
synced 2026-04-25 03:48:37 +09:00
🎨 Removed hardcoded variables
This commit is contained in:
@@ -247,15 +247,18 @@ class ArgParser(object):
|
|||||||
|
|
||||||
def run(self, app: str, version: str, is_experimental: bool = False) -> None:
|
def run(self, app: str, version: str, is_experimental: bool = False) -> None:
|
||||||
logger.debug(f"Sending request to revanced cli for building {app} revanced")
|
logger.debug(f"Sending request to revanced cli for building {app} revanced")
|
||||||
|
cli = "revanced-cli.jar"
|
||||||
|
patches = "revanced-patches.jar"
|
||||||
|
integrations = "revanced-integrations.apk"
|
||||||
args = [
|
args = [
|
||||||
"-jar",
|
"-jar",
|
||||||
"revanced-cli.jar",
|
cli,
|
||||||
"-a",
|
"-a",
|
||||||
app + ".apk",
|
app + ".apk",
|
||||||
"-b",
|
"-b",
|
||||||
"revanced-patches.jar",
|
patches,
|
||||||
"-m",
|
"-m",
|
||||||
"revanced-integrations.apk",
|
integrations,
|
||||||
"-o",
|
"-o",
|
||||||
f"Re-{app}-{version}-output.apk",
|
f"Re-{app}-{version}-output.apk",
|
||||||
"--keystore",
|
"--keystore",
|
||||||
|
|||||||
Reference in New Issue
Block a user