1
0
mirror of https://github.com/Luzifer/promcertcheck.git synced 2024-09-20 09:52:57 +00:00
promcertcheck/vendor/github.com/juju/errors/Makefile
Knut Ahlers 2f67c05f2e
Force latest version of pongo2
v3 has a bug with sorted keyword

Signed-off-by: Knut Ahlers <knut@ahlers.me>
2017-11-05 16:50:25 +01:00

12 lines
290 B
Makefile

default: check
check:
go test && go test -compiler gccgo
docs:
godoc2md github.com/juju/errors > README.md
sed -i 's|\[godoc-link-here\]|[![GoDoc](https://godoc.org/github.com/juju/errors?status.svg)](https://godoc.org/github.com/juju/errors)|' README.md
.PHONY: default check docs