From 695555f26f61bd79cc191b1a6e7c213043980c3f Mon Sep 17 00:00:00 2001 From: Pavel Kirkovsky Date: Tue, 20 Jul 2021 05:44:36 -0700 Subject: [PATCH] Prompt for password if none is given --- mvt/ios/cli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mvt/ios/cli.py b/mvt/ios/cli.py index 67b2864..540ef22 100644 --- a/mvt/ios/cli.py +++ b/mvt/ios/cli.py @@ -43,6 +43,7 @@ def cli(): help="Path to the folder where to store the decrypted backup") @click.option("--password", "-p", cls=MutuallyExclusiveOption, help="Password to use to decrypt the backup", + prompt="Enter backup password", hide_input=True, prompt_required=False, mutually_exclusive=["key_file"]) @click.option("--key-file", "-k", cls=MutuallyExclusiveOption, type=click.Path(exists=True),