mirror of
https://github.com/Luzifer/cloudkeys-go.git
synced 2024-11-12 16:02:44 +00:00
9c6e3c89a5
* fix js scoping issue * add external libraries (they were offline too often) * new compiled scripts and css * new fixes in the binary * vendor update * change js source * remove needless variable * removed more needless variables
24 lines
821 B
Makefile
24 lines
821 B
Makefile
PROJECT := github.com/juju/errors
|
|
|
|
.PHONY: check-licence check-go check docs
|
|
|
|
check: check-licence check-go
|
|
go test $(PROJECT)/...
|
|
|
|
check-licence:
|
|
@(fgrep -rl "Licensed under the LGPLv3" --exclude *.s .;\
|
|
fgrep -rl "MACHINE GENERATED BY THE COMMAND ABOVE; DO NOT EDIT" --exclude *.s .;\
|
|
find . -name "*.go") | sed -e 's,\./,,' | sort | uniq -u | \
|
|
xargs -I {} echo FAIL: licence missed: {}
|
|
|
|
check-go:
|
|
$(eval GOFMT := $(strip $(shell gofmt -l .| sed -e "s/^/ /g")))
|
|
@(if [ x$(GOFMT) != x"" ]; then \
|
|
echo go fmt is sad: $(GOFMT); \
|
|
exit 1; \
|
|
fi )
|
|
@(go tool vet -all -composites=false -copylocks=false .)
|
|
|
|
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
|