Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2016-02-16 17:54:18 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2016-02-16 17:54:18 +0300
commita9b41da7fc5a07eae0a72dc7e59f323a73e74a54 (patch)
treea7bc61ef086855d1e70b65ceef959eaa65494155 /Makefile
parent7f12dcc6036f3935688e3fc4be61e8b1596cbc1d (diff)
Execute unprivileged daemon in chroot
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b7addffe..97852062 100644
--- a/Makefile
+++ b/Makefile
@@ -11,6 +11,7 @@ GO_LDFLAGS ?= -X main.VERSION=$(VERSION) -X main.REVISION=$(REVISION)
GO_FILES ?= $(shell find . -name '*.go')
export GO15VENDOREXPERIMENT := 1
+export CGO_ENABLED := 0
all: gitlab-pages
@@ -35,7 +36,7 @@ lint:
complexity:
go get github.com/fzipp/gocyclo
- gocyclo -over 8 $(wildcard *.go)
+ gocyclo -over 9 $(wildcard *.go)
test:
go get golang.org/x/tools/cmd/cover