mirror of
https://github.com/restic/restic.git
synced 2025-11-16 08:33:35 +00:00
Revert "Put host last in SSH command line"
This reverts commit e1969d1e33.
This commit is contained in:
@@ -189,8 +189,11 @@ func buildSSHCommand(cfg Config) (cmd string, args []string, err error) {
|
||||
|
||||
cmd = "ssh"
|
||||
|
||||
if cfg.Port != "" {
|
||||
args = append(args, "-p", cfg.Port)
|
||||
host, port := cfg.Host, cfg.Port
|
||||
|
||||
args = []string{host}
|
||||
if port != "" {
|
||||
args = append(args, "-p", port)
|
||||
}
|
||||
if cfg.User != "" {
|
||||
args = append(args, "-l")
|
||||
@@ -198,8 +201,6 @@ func buildSSHCommand(cfg Config) (cmd string, args []string, err error) {
|
||||
}
|
||||
args = append(args, "-s")
|
||||
args = append(args, "sftp")
|
||||
|
||||
args = append(args, "--", cfg.Host)
|
||||
return cmd, args, nil
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user