From d4f74963121e1c8605dd45c4df7f3b30007f875f Mon Sep 17 00:00:00 2001 From: Jan-Erik Rediger Date: Tue, 28 Feb 2023 22:05:17 +0200 Subject: [PATCH] Only spellcheck md files and don't backup --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1a0e5eb..bc0adf8 100644 --- a/Makefile +++ b/Makefile @@ -41,5 +41,5 @@ latest-html: ## Get latests post renderewd into HTML .PHONY: latest-html spellcheck: ## Spellcheck the latest post - aspell --lang en_US --mode=markdown check $(shell find _posts -type f | sort | tail -1) + aspell --lang en_US --mode=markdown --dont-backup check $(shell find _posts -type f -name '*.md' | sort | tail -1) .PHONY: spellcheck