From 8f7ab8b0519d18438c0b7b116781cf7ef9df378b Mon Sep 17 00:00:00 2001 From: Noah Jacobson Date: Thu, 1 Aug 2024 21:45:20 -0400 Subject: [PATCH] fix: html builder --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3b0a6d0..95440da 100644 --- a/Makefile +++ b/Makefile @@ -65,7 +65,7 @@ push_markdown: push_html: $(eval COMMIT_HASH=$(shell git rev-parse --short HEAD)) git config user.name awesome-nicc-bot && git config user.email github-actions@github.com - git add -f html/* && (git diff-index --quiet HEAD || git commit --amend -m "[bot] build HTML from data $(COMMIT_HASH)") + git add -f html && (git diff-index --quiet HEAD || git commit --amend -m "[bot] build HTML from data $(COMMIT_HASH)") git push .PHONY: url_check # check URLs for dead links or other connection problems