Skip to content

Commit

Permalink
Makefile: fix test-unit-docker (#1406)
Browse files Browse the repository at this point in the history
GOFLAGS need to be passed with quotes to ensure they are not split over
multiple arguments to `make`.

Signed-off-by: Mara Sophie Grosch <[email protected]>

Signed-off-by: Mara Sophie Grosch <[email protected]>
  • Loading branch information
LittleFox94 authored Aug 24, 2022
1 parent 38beb15 commit 76ef02f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ test-unit-docker:
-e GOCACHE=/cache \
-w /go/src/github.com/kubermatic/machine-controller \
golang:$(GO_VERSION) \
make test-unit GOFLAGS=$(GOFLAGS)
make test-unit "GOFLAGS=$(GOFLAGS)"

.PHONY: test-unit
test-unit:
Expand Down

0 comments on commit 76ef02f

Please sign in to comment.