From 5f1181984c291837d5df1601066520da338fa949 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Tue, 28 Nov 2023 08:53:02 -1000 Subject: [PATCH] workaround for pandoc not being present in Cloudflare Pages platform V2 part 7 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1b0e8dd..e5bd653 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ pandoc: pandoc --version || \ wget https://github.com/jgm/pandoc/releases/download/3.1.9/pandoc-3.1.9-linux-amd64.tar.gz && \ tar xzf pandoc-3.1.9-linux-amd64.tar.gz && \ - rm pandoc-3.1.9-linux-amd64.tar.gz + rm -rf pandoc-3.1.9* #PANDOC=pandoc PANDOC=pandoc-3.1.9/bin/pandoc \