(name string)
| 196 | } |
| 197 | |
| 198 | func displayContext(name string) string { |
| 199 | if name == deploy.DefaultContext { |
| 200 | return "default context" |
| 201 | } |
| 202 | return fmt.Sprintf("context '%s'", name) |
| 203 | } |
| 204 | |
| 205 | var ( |
| 206 | ErrNothingDeployable = errors.New("there is nothing deployable") |