diff options
author | Unknwon <u@gogs.io> | 2016-02-14 20:07:42 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-02-14 20:07:42 -0500 |
commit | a1d97e8f5c13d4380abe761ed64d0ab59b779167 (patch) | |
tree | a3f542336e3856df14e4036efec69215e9300825 /Makefile | |
parent | daa43cfb6e6ed4118676e55d47d8816bab2379e5 (diff) | |
download | gitea-a1d97e8f5c13d4380abe761ed64d0ab59b779167.tar.gz gitea-a1d97e8f5c13d4380abe761ed64d0ab59b779167.zip |
Minor fix for #2567
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -19,6 +19,10 @@ build: $(GENERATED) go install -v -ldflags '$(LDFLAGS)' -tags '$(TAGS)' cp '$(GOPATH)/bin/gogs' . +build-dev: $(GENERATED) + go install -v -race -tags '$(TAGS)' + cp '$(GOPATH)/bin/gogs' . + govet: go tool vet -composites=false -methods=false -structtags=false . |