Skip to content

Commit

Permalink
feat: added extra space to minisign password prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
CJ-Jackson committed Jan 24, 2025
1 parent 087b96e commit c5ff1f8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/run-deploy-remote-cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down
2 changes: 1 addition & 1 deletion client/run-deploy-remote-metal-cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down
2 changes: 1 addition & 1 deletion toml-util/run-deploy-remote-toml.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit c5ff1f8

Please sign in to comment.