Update commands to match new location of project files.

This commit is contained in:
Gurgy 2017-02-17 16:11:57 +01:00
parent 0feb8cbe46
commit 5bdbf44045

View file

@ -2,8 +2,14 @@
set -eu
golint src/...
go fmt ./src/...
go tool vet --shadow ./src
gocyclo -over 12 src/
golint roomserver/...
go fmt ./roomserver/...
go tool vet --shadow ./roomserver
gocyclo -over 12 roomserver/
golint clientapi/...
go fmt ./clientapi/...
go tool vet --shadow ./clientapi
gocyclo -over 12 clientapi/
gb test