Skip to content

Commit

Permalink
fix: html build overwriting past commit
Browse files Browse the repository at this point in the history
  • Loading branch information
noahajac committed Aug 9, 2024
1 parent 8f7ab8b commit c648e5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 [email protected]
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 -m "[bot] build HTML from data $(COMMIT_HASH)")
git push

.PHONY: url_check # check URLs for dead links or other connection problems
Expand Down

0 comments on commit c648e5c

Please sign in to comment.