You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GOFMT = gofmtresult=$$(gofmt -e -l -s ${GO_FILES} ${GO_PACKAGES}); if [[ -n $$gofmtresult ]]; then echo "gofmt errors found in the following files: $${gofmtresult}"; false; fi;
16
16
GOTEST = go test --cover --race -v
17
17
18
+
# UID and GID of local user
19
+
UID := $(shell id -u)
20
+
GID := $(shell id -g)
21
+
22
+
18
23
bootstrap:
19
24
${DEV_ENV_CMD} glide install
20
25
@@ -37,3 +42,7 @@ test-style:
37
42
38
43
test-unit:
39
44
${DEV_ENV_PREFIX_CGO_ENABLED}${DEV_ENV_IMAGE} sh -c '${GOTEST} $$(glide nv)'
0 commit comments