(err error)
| 306 | } |
| 307 | |
| 308 | func handleError(err error) { |
| 309 | //Stupid handling of catch-all errors for now |
| 310 | if err != nil { |
| 311 | fmt.Fprintln(os.Stderr, err) |
| 312 | utils.Exit(1) |
| 313 | } |
| 314 | } |
| 315 | |
| 316 | func execExecute(hosts []nix.Host) error { |
| 317 | sshContext := createSSHContext() |