(hosts []nix.Host)
| 352 | } |
| 353 | |
| 354 | func execPush(hosts []nix.Host) (string, error) { |
| 355 | resultPath, err := execBuild(hosts) |
| 356 | if err != nil { |
| 357 | return "", err |
| 358 | } |
| 359 | |
| 360 | fmt.Fprintln(os.Stderr) |
| 361 | return resultPath, pushPaths(createSSHContext(), hosts, resultPath) |
| 362 | } |
| 363 | |
| 364 | func execDeploy(hosts []nix.Host) (string, error) { |
| 365 | doPush := false |
no test coverage detected