From 05a15a86b2ebda55731fb9e959efd2e2d609353d Mon Sep 17 00:00:00 2001 From: jack-berg <34418638+jack-berg@users.noreply.github.com> Date: Tue, 3 Sep 2024 16:32:15 -0500 Subject: [PATCH] Fix build (#116) * Fix build * restore validator include --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d042e82..2f6c4a4 100644 --- a/Makefile +++ b/Makefile @@ -2,11 +2,11 @@ SCHEMA_FILES := $(shell find . -path './schema/*.json' -exec basename {} \; | so EXAMPLE_FILES := $(shell find . -path './examples/*.yaml' -exec basename {} \; | sort) $(shell mkdir -p out) -include validator/Makefile - .PHONY: all all: install-tools compile-schema validate-examples +include validator/Makefile + .PHONY: compile-schema compile-schema: @if ! npm ls ajv-cli; then npm install; fi