diff options
author | Prefetch | 2021-02-20 20:21:32 +0100 |
---|---|---|
committer | Prefetch | 2021-02-20 20:21:32 +0100 |
commit | 88d42030530abeba4f3ceaf63da71e6cdfa71267 (patch) | |
tree | f16d7f173d8cc4c0ba9eaaf8467099a2bd90555e /latex | |
parent | 92a86d01c4837901fa433158294a9ce23cbfcefa (diff) |
Stop tracking the knowledge base's index.html files
Diffstat (limited to 'latex')
-rw-r--r-- | latex/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/latex/Makefile b/latex/Makefile index 590d33d..69bf59f 100644 --- a/latex/Makefile +++ b/latex/Makefile @@ -4,8 +4,8 @@ CONVFLAGS = --from markdown --to html --standalone --template template.html --ma know: $(shell find ./know/concept -mindepth 1 -maxdepth 1 -type d -printf "%p/index.html\\n") for file in $^; do \ - mkdir -p ../static/`dirname $$file` ; \ - cp -v $$file ../static/`dirname $$file`/ ; \ + mkdir -p ../public/`dirname $$file` ; \ + cp -v $$file ../public/`dirname $$file`/ ; \ done know/concept/%/index.html: know/concept/%/source.md template.html main.css |