1
0
Fork 0
mirror of https://github.com/Luzifer/promcertcheck.git synced 2024-11-14 10:42:42 +00:00
promcertcheck/vendor/github.com/juju/errors/Makefile
Knut Ahlers a2070ccccc
More refactorings
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-06-04 12:19:58 +02:00

11 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