From 87936f07afc36025e067a2accef33ab17caa9439 Mon Sep 17 00:00:00 2001 From: dadada Date: Thu, 31 Dec 2020 12:11:31 +0100 Subject: [PATCH] Fix quoting --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index d582a80..3003f72 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}"' {} \;