Add missing package name for xiaomi-wearable (#547)

* fix: Add missing package name for `xiaomi-wearable`

* fix: Replace the deprecated keystore `alias` flag

* chore: fix formatting
This commit is contained in:
IMXEren
2024-08-15 11:45:06 +05:30
committed by GitHub
parent f57e3f9c3c
commit b8eb92ae51
2 changed files with 6 additions and 1 deletions
+5 -1
View File
@@ -193,7 +193,11 @@ class Parser(object):
args[1::2] = map(self.config.temp_folder.joinpath, args[1::2])
if app.old_key and "v4" in version:
# https://github.com/ReVanced/revanced-cli/issues/272#issuecomment-1740587534
old_key_flags = ["--alias=alias", "--keystore-entry-password=ReVanced", "--keystore-password=ReVanced"]
old_key_flags = [
"--keystore-entry-alias=alias",
"--keystore-entry-password=ReVanced",
"--keystore-password=ReVanced",
]
args.extend(old_key_flags)
if self.config.ci_test:
self.exclude_all_patches()