From d7b878bbbc322d6274ab527e19aafbba83c7be80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20=C5=A0trauch?= Date: Thu, 13 Apr 2023 20:17:29 +0200 Subject: [PATCH] SSH host keyscan typo fix --- containers/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containers/types.go b/containers/types.go index 0838c87..a47758d 100644 --- a/containers/types.go +++ b/containers/types.go @@ -284,7 +284,7 @@ func (c *Container) GetDeploySSHKeys() (string, string, error) { func (c *Container) GetHostKey() (string, error) { driver := c.getDriver() - hostKeyRaw, err := driver.Exec(c.App.Name, []string{"ssh-keyscan ", "localhost"}, "", []string{}, true) + hostKeyRaw, err := driver.Exec(c.App.Name, []string{"ssh-keyscan", "localhost"}, "", []string{}, true) if err != nil { return "", err }