From 843cd8653a80ad6a221728b2981be3fd5aecb318 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Tue, 30 Jan 2024 17:59:38 -0600 Subject: [PATCH] Fix so "make check" works after recreate-db target --- db/schemas/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/db/schemas/Makefile b/db/schemas/Makefile index b502626..0edf099 100644 --- a/db/schemas/Makefile +++ b/db/schemas/Makefile @@ -145,7 +145,9 @@ COMMENT_OFF_FILES := $(patsubst %,%/comment_off.sql, \ ## check Test that an input file exists for an expected output file .PHONY: check check: - for dirpath in $$(find . -mindepth 1 -maxdepth 1 -type d) ; do \ + for dirpath in \ + $$(find . -mindepth 1 -maxdepth 1 -type d \! -name $(DB_CACHE)) \ + ; do \ dirname=$$(basename $${dirpath}) ; \ awk -v order="$(ORDER)" \ -v dirname=$${dirname} \ -- 2.34.1