build: always set osusergo (#14583)

The way this tag was previous declared would cause it to be overwritten
when the GO_TAGS env var was set.
This commit is contained in:
Luiz Aoqui
2022-09-13 21:13:17 -04:00
committed by GitHub
parent 42df3ac22b
commit 507391df46

View File

@@ -21,7 +21,7 @@ ifndef BIN
BIN := $(GOPATH)/bin
endif
GO_TAGS ?= osusergo
GO_TAGS := osusergo $(GO_TAGS)
ifeq ($(CI),true)
GO_TAGS := codegen_generated $(GO_TAGS)