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()