From acd312c94ceb32c2dc01279464867496e39d027a Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Mon, 6 Jun 2022 21:57:30 +0200 Subject: [PATCH] Makefile: Add plugins/*/examples/* as SMOKE_SKETCHES candidates Signed-off-by: Gergely Nagy --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 97beacb6..ffb887d7 100644 --- a/Makefile +++ b/Makefile @@ -145,7 +145,7 @@ cpplint: shellcheck: bin/check-shell-scripts.sh -SMOKE_SKETCHES := $(sort $(shell if [ -d ./examples ]; then find ./examples -type f -name \*ino | xargs -n 1 dirname; fi)) +SMOKE_SKETCHES := $(sort $(shell if [ -d ./examples ]; then find ./examples -type f -name \*ino | xargs -n 1 dirname; fi; if [ -d ./plugins ]; then find ./plugins -type f -path '*/examples/*/*.ino' | xargs -n 1 dirname; fi)) smoke-sketches: $(SMOKE_SKETCHES) @echo "Smoke-tested all the sketches"