Skip to content

Commit c2f2d89

Browse files
authored
fix catalogd panic, paste error on mac (#2779)
1 parent 7d6a00d commit c2f2d89

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ extension-developer-e2e: $(OPERATOR_SDK) #EXHELP Run extension create, upgrade a
302302
go test -count=1 -v ./test/extension-developer-e2e/...
303303

304304
UNIT_TEST_DIRS := $(shell go list ./... | grep -vE "/test/|/testutils|/testutil/mock") $(shell go list ./test/internal/...)
305-
COVERAGE_PKGS := $(shell go list ./... | grep -vE "/test/|/testutils|/testutil/mock" | paste -sd,)
305+
COVERAGE_PKGS := $(shell go list ./... | grep -vE "/test/|/testutils|/testutil/mock" | paste -sd, -)
306306
COVERAGE_UNIT_DIR := $(ROOT_DIR)/coverage/unit
307307

308308
.PHONY: envtest-k8s-bins #HELP Uses setup-envtest to download and install the binaries required to run ENVTEST-test based locally at the project/bin directory.
@@ -544,7 +544,6 @@ go-build-local: $(BINARIES)
544544
build-linux: build-deps go-build-linux #EXHELP Build manager binary for GOOS=linux and local GOARCH.
545545
go-build-linux: BUILDBIN := bin/linux
546546
go-build-linux: export GOOS=linux
547-
go-build-linux: export GOARCH=amd64
548547
go-build-linux: $(BINARIES)
549548

550549
.PHONY: run-internal

0 commit comments

Comments
 (0)