From c5ff1f868f94eb57253e3fe3c3992352d7fca29f Mon Sep 17 00:00:00 2001 From: Chris Jackson Date: Fri, 24 Jan 2025 18:28:26 +0000 Subject: [PATCH] feat: added extra space to minisign password prompt --- client/run-deploy-remote-cli.py | 2 +- client/run-deploy-remote-metal-cli.py | 2 +- toml-util/run-deploy-remote-toml.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/client/run-deploy-remote-cli.py b/client/run-deploy-remote-cli.py index 897d1e9..df5bdd4 100755 --- a/client/run-deploy-remote-cli.py +++ b/client/run-deploy-remote-cli.py @@ -43,7 +43,7 @@ def create(cls) -> Self: return cls(passwd=sys.stdin.read().strip()) if os.path.exists(os.path.expanduser("~/.config/run-deploy/options/minisign_passwd")): - return cls(passwd=getpass.getpass("Minisign Password:").strip()) + return cls(passwd=getpass.getpass("Minisign Password: ").strip()) return cls() diff --git a/client/run-deploy-remote-metal-cli.py b/client/run-deploy-remote-metal-cli.py index a941d1c..18814e9 100755 --- a/client/run-deploy-remote-metal-cli.py +++ b/client/run-deploy-remote-metal-cli.py @@ -43,7 +43,7 @@ def create(cls) -> Self: return cls(passwd=sys.stdin.read().strip()) if os.path.exists(os.path.expanduser("~/.config/run-deploy/options/minisign_passwd")): - return cls(passwd=getpass.getpass("Minisign Password:").strip()) + return cls(passwd=getpass.getpass("Minisign Password: ").strip()) return cls() diff --git a/toml-util/run-deploy-remote-toml.py b/toml-util/run-deploy-remote-toml.py index e4ac679..2116ba3 100755 --- a/toml-util/run-deploy-remote-toml.py +++ b/toml-util/run-deploy-remote-toml.py @@ -88,7 +88,7 @@ class MinisignPasswd: @classmethod def create(cls) -> Self: if os.path.exists(os.path.expanduser("~/.config/run-deploy/options/minisign_passwd")): - return cls(passwd=getpass.getpass("Minisign Password:").strip()) + return cls(passwd=getpass.getpass("Minisign Password: ").strip()) return cls()