From 0447a8d948746c407e7f1a064a3a1e5253b68894 Mon Sep 17 00:00:00 2001 From: Thomas Schuetz Date: Wed, 15 Mar 2023 09:22:58 +0100 Subject: [PATCH] fix: find command Signed-off-by: Thomas Schuetz --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d2a7633..c8d71cb 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,3 @@ .PHONY: test test: - find . -mindepth 1 -maxdepth 1 -not -path '*/.*' -type d | xargs make -C {} test + find . -mindepth 1 -maxdepth 1 -not -path '*/.*' -type d -exec make -C {} test \;