You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
502 B
18 lines
502 B
usage:
|
|
echo "See Makefile"
|
|
|
|
vet:
|
|
go vet ./...
|
|
|
|
updatedeps:
|
|
go run github.com/tailscale/depaware --update tailscale.com/cmd/tailscaled
|
|
go run github.com/tailscale/depaware --update tailscale.com/cmd/tailscale
|
|
|
|
depaware:
|
|
go run github.com/tailscale/depaware --check tailscale.com/cmd/tailscaled
|
|
go run github.com/tailscale/depaware --check tailscale.com/cmd/tailscale
|
|
|
|
check: staticcheck vet depaware
|
|
|
|
staticcheck:
|
|
go run honnef.co/go/tools/cmd/staticcheck -- $$(go list ./... | grep -v tempfork)
|
|
|