From 04869db2d026569477ece4e77e323150ff8dfcd0 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Tue, 28 Nov 2023 08:51:54 -1000 Subject: [PATCH] workaround for pandoc not being present in Cloudflare Pages platform V2 part 6 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 62798e9..1b0e8dd 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-amd.tar.gz + rm pandoc-3.1.9-linux-amd64.tar.gz #PANDOC=pandoc PANDOC=pandoc-3.1.9/bin/pandoc \