mirror of
https://github.com/tailscale/tailscale.git
synced 2025-02-20 11:58:39 +00:00
cmd/tailscale/cli: fix vet warning
And add vet to the "make check" target, like the CI has.
This commit is contained in:
parent
24d1a38e81
commit
5e0375808b
5
Makefile
5
Makefile
@ -1,7 +1,10 @@
|
|||||||
usage:
|
usage:
|
||||||
echo "See Makefile"
|
echo "See Makefile"
|
||||||
|
|
||||||
check: staticcheck
|
vet:
|
||||||
|
go vet ./...
|
||||||
|
|
||||||
|
check: staticcheck vet
|
||||||
|
|
||||||
staticcheck:
|
staticcheck:
|
||||||
go run honnef.co/go/tools/cmd/staticcheck -- $$(go list ./... | grep -v tempfork)
|
go run honnef.co/go/tools/cmd/staticcheck -- $$(go list ./... | grep -v tempfork)
|
||||||
|
@ -63,5 +63,4 @@ func runMonitor(ctx context.Context) error {
|
|||||||
mon.Start()
|
mon.Start()
|
||||||
log.Printf("Started link change monitor; waiting...")
|
log.Printf("Started link change monitor; waiting...")
|
||||||
select {}
|
select {}
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user