mirror of
https://github.com/argoproj/argo-cd
synced 2026-05-23 09:18:26 +00:00
* Ensure SSH private key is written out with a final newline character * Retrigger stuck CI
This commit is contained in:
parent
9e81c38c13
commit
9f8505205f
1 changed files with 1 additions and 1 deletions
|
|
@ -157,7 +157,7 @@ func (c SSHCreds) Environ() (io.Closer, []string, error) {
|
|||
}
|
||||
defer file.Close()
|
||||
|
||||
_, err = file.WriteString(c.sshPrivateKey)
|
||||
_, err = file.WriteString(c.sshPrivateKey + "\n")
|
||||
if err != nil {
|
||||
return nil, nil, err
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue