1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Ignore repository with issue disabled or use external tracker in dashboard issues

This commit is contained in:
Unknwon
2016-08-05 12:46:26 -07:00
parent 50422f1fc2
commit cf6d321991
5 changed files with 12 additions and 10 deletions

View File

@@ -16,18 +16,19 @@ NOW = $(shell date -u '+%Y%m%d%I%M%S')
.IGNORE: public/css/gogs.css
build: $(GENERATED)
go install $(BUILD_FLAGS) -ldflags '$(LDFLAGS)' -tags '$(TAGS)'
cp '$(GOPATH)/bin/gogs' .
# FIXME: find a way to ignore /vendor/ and /data/ directories.
govet:
go tool vet -composites=false -methods=false -structtags=false .
build-dev: $(GENERATED) govet
build: $(GENERATED) govet
go install $(BUILD_FLAGS) -ldflags '$(LDFLAGS)' -tags '$(TAGS)'
cp '$(GOPATH)/bin/gogs' .
build-dev: $(GENERATED)
go install $(BUILD_FLAGS) -tags '$(TAGS)'
cp '$(GOPATH)/bin/gogs' .
build-dev-race: $(GENERATED) govet
build-dev-race: $(GENERATED)
go install $(BUILD_FLAGS) -race -tags '$(TAGS)'
cp '$(GOPATH)/bin/gogs' .