fix(cli): use go1.5 templates

circleci only supports go1.5
pull/442/head
Adam Reese 9 years ago
parent 4b3d3cfa56
commit caa14b19e0

@ -30,13 +30,9 @@ var errMissingDeploymentArg = errors.New("First argument, deployment name, is re
const defaultShowFormat = `Name: {{.Name}}
Status: {{.State.Status}}
{{- with .State.Errors}}
Errors:
{{- range .}}
{{.}}
{{- end}}
{{- end}}
`
{{with .State.Errors}}Errors:
{{range .}} {{.}}{{end}}
{{end}}`
func init() {
addCommands(deploymentCommands())

Loading…
Cancel
Save