From 199da87b3b8bcfc0c916a4ddd7888d18304d639c Mon Sep 17 00:00:00 2001 From: Chad Metcalf Date: Sun, 9 Aug 2020 21:04:41 -0700 Subject: [PATCH] Fixing Linux vs Mac Makefile differences. Signed-off-by: Chad Metcalf --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ce8af42..0f90d34 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ test-all: @bats -T $(shell find . -name test.bats| sort ) test-changed: - @bats -T $(shell git diff --name-status ${BASE_REF} | awk '{print $2}' | xargs dirname | uniq | grep -v -E '^(\.|lib)' | xargs -I% echo -n " %/test.bats" ) + @bats -T $(shell git diff --name-status ${BASE_REF} | awk '{ print $$2}' | xargs -I% dirname % | grep -v -E '(^\.|lib)' | xargs -I% echo "%/test.bats") update-tests: @find . -maxdepth 1 -type d -not -path '*/\.*' -not -path '.' -not -path './lib' -exec cp ./lib/test.bats.example {}/test.bats \;