build: add changelogfmt target to format [GH-xxxx] references to links

This commit is contained in:
Frank Schroeder 2017-10-04 20:56:28 +02:00 committed by Frank Schröder
parent 7b2ef00d03
commit 23b057f46b
2 changed files with 6 additions and 1 deletions

1
.gitignore vendored
View File

@ -9,6 +9,7 @@
/pkg
Thumbs.db
bin/
changelog.tmp
exit-code
ui/.bundle
ui/.sass-cache

View File

@ -31,7 +31,7 @@ bin: tools
@GOTAGS='$(GOTAGS)' sh -c "'$(CURDIR)/scripts/build.sh'"
# dev creates binaries for testing locally - these are put into ./bin and $GOPATH
dev: vendorfmt dev-build
dev: changelogfmt vendorfmt dev-build
dev-build:
@echo "--> Building consul"
@ -45,6 +45,10 @@ vendorfmt:
test -x $(GOPATH)/bin/vendorfmt || go get -u github.com/magiconair/vendorfmt/cmd/vendorfmt
vendorfmt
changelogfmt:
@echo "--> Making [GH-xxxx] references clickable..."
@sed -E 's|([^\[])\[GH-([0-9]+)\]|\1[[GH-\2](https://github.com/hashicorp/consul/issues/\2)]|g' CHANGELOG.md > changelog.tmp && mv changelog.tmp CHANGELOG.md
# linux builds a linux package independent of the source platform
linux:
mkdir -p pkg/linux_amd64/