Skip to content

Commit

Permalink
[#115] fix transition template for description
Browse files Browse the repository at this point in the history
  • Loading branch information
coryb committed Sep 27, 2017
1 parent 3913726 commit 986cc78
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -41,7 +41,7 @@ all:
go get -u github.com/karalabe/xgo
rm -rf dist
mkdir -p dist
xgo --targets="freebsd/amd64,linux/386,linux/amd64,windows/386,windows/amd64,darwin/amd64" -dest ./dist -ldflags="-w -s" ./cmd/jira
xgo --go 1.9.0 --targets="freebsd/amd64,linux/386,linux/amd64,windows/386,windows/amd64,darwin/amd64" -dest ./dist -ldflags="-w -s" ./cmd/jira

install:
${MAKE} GOBIN=$$HOME/bin build
Expand Down
3 changes: 2 additions & 1 deletion jiracli/templates.go
Expand Up @@ -474,7 +474,8 @@ fields:
- name: {{ .name }}{{end}}{{end}}
{{- end -}}
{{if .meta.fields.description}}
description: {{or .overrides.description .fields.description }}
description: |~
{{ or .fields.description "" | indent 4 }}
{{- end -}}
{{if .meta.fields.fixVersions -}}
{{if .meta.fields.fixVersions.allowedValues}}
Expand Down

0 comments on commit 986cc78

Please sign in to comment.