From f35f8e137ce6b685821049cabe00fa9d26a54282 Mon Sep 17 00:00:00 2001 From: dadada Date: Thu, 31 Dec 2020 12:00:54 +0100 Subject: [PATCH] Fixup pandoc long option --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 95525f8..d582a80 100755 --- a/build.sh +++ b/build.sh @@ -1,3 +1,3 @@ #!/bin/sh -find . -iname "*.md" -type f -exec sh -c 'pandoc -s -f commonmark -t html --template src/template.html -o "''${0%.md}.html" "''${0}"' {} \; +find . -iname "*.md" -type f -exec sh -c 'pandoc -s -f commonmark -t html --template=src/template.html -o "''${0%.md}.html" "''${0}"' {} \;