Revert some changes

This commit is contained in:
Justin Traglia 2024-09-20 09:35:44 -05:00
parent 0c9762f837
commit e0651d34b0
No known key found for this signature in database
GPG Key ID: F099C9CD25DF82A1
1 changed files with 5 additions and 6 deletions

View File

@ -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.