From e12988a8f9b61f5dc35ca1849a4adf26a532f6b3 Mon Sep 17 00:00:00 2001
From: John Gardiner Myers <jgmyers@proofpoint.com>
Date: Wed, 20 Oct 2021 15:23:13 -0700
Subject: [PATCH] Fix inadequate quoting of KUBEBUILDER_ASSETS

Signed-off-by: John Gardiner Myers <jgmyers@proofpoint.com>
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index bdac575f..edb8f316 100644
--- a/Makefile
+++ b/Makefile
@@ -34,7 +34,7 @@ cleanup-kind:
 	rm $(TEST_KUBECONFIG)
 
 test: $(EMBEDDED_MANIFESTS_TARGET) tidy fmt vet setup-envtest
-	KUBEBUILDER_ASSETS=$(KUBEBUILDER_ASSETS) go test ./... -coverprofile cover.out --tags=unit
+	KUBEBUILDER_ASSETS="$(KUBEBUILDER_ASSETS)" go test ./... -coverprofile cover.out --tags=unit
 
 e2e: $(EMBEDDED_MANIFESTS_TARGET) tidy fmt vet
 	TEST_KUBECONFIG=$(TEST_KUBECONFIG) go test ./cmd/flux/... -coverprofile e2e.cover.out --tags=e2e -v -failfast
-- 
GitLab