diff options
author | John MacFarlane <jgm@berkeley.edu> | 2020-09-15 10:35:04 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2020-09-15 10:35:32 -0700 |
commit | 6ef38e9ab3df2ccee5f605d29c6b94cf94d2b5d3 (patch) | |
tree | ce53bfe95a94ef3b25dc43c35b1089eb0ee714aa /Makefile | |
parent | c41ec933defe0af71b0f3f83f9c91cb85cc911ed (diff) | |
download | pandoc-6ef38e9ab3df2ccee5f605d29c6b94cf94d2b5d3.tar.gz |
Fix pandoc-templates target to include all partials.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |