mirror of
https://github.com/sotam0316/docker-py-revanced.git
synced 2026-04-25 03:48:37 +09:00
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:
+5
-1
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user