aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2020-09-15 10:35:04 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2020-09-15 10:35:32 -0700
commit6ef38e9ab3df2ccee5f605d29c6b94cf94d2b5d3 (patch)
treece53bfe95a94ef3b25dc43c35b1089eb0ee714aa /Makefile
parentc41ec933defe0af71b0f3f83f9c91cb85cc911ed (diff)
downloadpandoc-6ef38e9ab3df2ccee5f605d29c6b94cf94d2b5d3.tar.gz
Fix pandoc-templates target to include all partials.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files 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