From 4faa2fd38c0071eac170cf9e7954ac5ab6488c14 Mon Sep 17 00:00:00 2001 From: Dan Jaglowski Date: Mon, 22 May 2023 09:50:51 -0600 Subject: [PATCH] [chore] Fix Makefile's INTEGRATION_MODS --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 03c970e633a4..bb7cb1a7260f 100644 --- a/Makefile +++ b/Makefile @@ -39,7 +39,7 @@ ALL_MODS := $(RECEIVER_MODS) $(PROCESSOR_MODS) $(EXPORTER_MODS) $(EXTENSION_MODS # find -exec dirname cannot be used to process multiple matching patterns FIND_INTEGRATION_TEST_MODS={ find . -type f -name "*integration_test.go" & find . -type f -name "*e2e_test.go" -not -path "./testbed/*"; } -INTEGRATION_MODS := $(shell $(FIND_INTEGRATION_TEST_MODS) | uniq | xargs $(TO_MOD_DIR) ) +INTEGRATION_MODS := $(shell $(FIND_INTEGRATION_TEST_MODS) | xargs $(TO_MOD_DIR) | uniq) ifeq ($(GOOS),windows) EXTENSION := .exe