Fixing Linux vs Mac Makefile differences.

Signed-off-by: Chad Metcalf <chad@docker.com>
This commit is contained in:
Chad Metcalf 2020-08-09 21:04:41 -07:00 committed by Chad Metcalf
parent e059c77a47
commit 199da87b3b
No known key found for this signature in database
GPG Key ID: BCA7CAE891B2C9B5

View File

@ -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 \;