fix docker build args value, as this passes in a literal double single quote

This commit is contained in:
slmagus 2019-10-16 10:53:39 -04:00
parent 8943886934
commit 7413a51620
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ GO_LDFLAGS += '
EXECUTOR_PACKAGE = $(REPOPATH)/cmd/executor
WARMER_PACKAGE = $(REPOPATH)/cmd/warmer
KANIKO_PROJECT = $(REPOPATH)/kaniko
BUILD_ARG ?= ''
BUILD_ARG ?=
out/executor: $(GO_FILES)
GOARCH=$(GOARCH) GOOS=linux CGO_ENABLED=0 go build -ldflags $(GO_LDFLAGS) -o $@ $(EXECUTOR_PACKAGE)