diff --git a/containers/types.go b/containers/types.go index a47758d..8b18c07 100644 --- a/containers/types.go +++ b/containers/types.go @@ -264,11 +264,11 @@ func (c *Container) GenerateDeploySSHKeys() (bool, error) { func (c *Container) GetDeploySSHKeys() (string, string, error) { driver := c.getDriver() - privateKey, err := driver.Exec(c.App.Name, []string{"cat ", "/srv/.ssh/id_rsa"}, "", []string{}, true) + privateKey, err := driver.Exec(c.App.Name, []string{"cat", "/srv/.ssh/id_rsa"}, "", []string{}, true) if err != nil { return "", "", err } - pubKey, err := driver.Exec(c.App.Name, []string{"cat ", "/srv/.ssh/id_rsa.pub"}, "", []string{}, true) + pubKey, err := driver.Exec(c.App.Name, []string{"cat", "/srv/.ssh/id_rsa.pub"}, "", []string{}, true) if err != nil { return "", "", err }