(host Host, resultPath string)
| 463 | } |
| 464 | |
| 465 | func GetPathsToPush(host Host, resultPath string) (paths []string, err error) { |
| 466 | path1, err := GetNixSystemPath(host, resultPath) |
| 467 | if err != nil { |
| 468 | return paths, err |
| 469 | } |
| 470 | |
| 471 | paths = append(paths, path1) |
| 472 | |
| 473 | return paths, nil |
| 474 | } |
| 475 | |
| 476 | func Push(ctx *ssh.SSHContext, host Host, paths ...string) (err error) { |
| 477 | utils.ValidateEnvironment("ssh") |
no test coverage detected