Skip to content

Commit

Permalink
fix: remove errant space in ssh command with service (#406)
Browse files Browse the repository at this point in the history
  • Loading branch information
shreddedbacon authored Nov 28, 2024
1 parent b4bff86 commit ae2f853
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/lagoon/ssh/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func InteractiveSSH(lagoon map[string]string, sshService string, sshContainer st
}
var connString string
if sshService != "" {
connString = fmt.Sprintf("%s service=%s", connString, sshService)
connString = fmt.Sprintf("service=%s", sshService)
}
if sshContainer != "" && sshService != "" {
connString = fmt.Sprintf("%s container=%s", connString, sshContainer)
Expand Down

0 comments on commit ae2f853

Please sign in to comment.