From e0651d34b0c43a2e34bb3092c04f80a18e63cc03 Mon Sep 17 00:00:00 2001 From: Justin Traglia Date: Fri, 20 Sep 2024 09:35:44 -0500 Subject: [PATCH] Revert some changes --- Makefile | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index f424832ca1..dbda9104a2 100644 --- a/Makefile +++ b/Makefile @@ -135,15 +135,14 @@ endif open_cov: ((open "$(COV_INDEX_FILE)" || xdg-open "$(COV_INDEX_FILE)") &> /dev/null) & -############################################################################### -# Table of Contents -############################################################################### - # When using .ONESHELL, bail on errors. .SHELLFLAGS = -e -# This contains all markdown files with specifications. -MARKDOWN_FILES = $(wildcard $(SPEC_DIR)/**/*.md) \ +# This contains all markdown files that should have table of contents. +MARKDOWN_FILES = $(wildcard $(SPEC_DIR)/*/*.md) \ + $(wildcard $(SPEC_DIR)/*/*/*.md) \ + $(wildcard $(SPEC_DIR)/_features/*/*.md) \ + $(wildcard $(SPEC_DIR)/_features/*/*/*.md) \ $(wildcard $(SSZ_DIR)/*.md) # Check all files and error if any ToC were modified.