From 6ef38e9ab3df2ccee5f605d29c6b94cf94d2b5d3 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Tue, 15 Sep 2020 10:35:04 -0700 Subject: [PATCH] Fix pandoc-templates target to include all partials. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3691bb233..ce17c0a15 100644 --- a/Makefile +++ b/Makefile @@ -100,9 +100,9 @@ download_stats: pandoc-templates: rm ../pandoc-templates/default.* ; \ - cp data/templates/default.* data/templates/README.markdown data/templates/styles.* ../pandoc-templates/ ; \ + cp data/templates/* ../pandoc-templates/ ; \ pushd ../pandoc-templates/ && \ - git add default.* README.markdown styles.* && \ + git add * && \ git commit -m "Updated templates for pandoc $(version)" && \ popd