From da3efcedd7952a3ccf7842876b9d50dc1c458c44 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Tue, 28 Nov 2023 08:35:28 -1000 Subject: [PATCH] workaround for pandoc not being present in Cloudflare Pages platform V2 part 2 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index aed4b9b..5ca0a65 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ all: pandoc html # workaround for pandoc not being present in Cloudflare Pages platform V2 pandoc: - pandoc --version || apt install pandoc + pandoc --version || sudo apt install -y pandoc # Generate html from all md files in src/, in out/ html: $(patsubst src/%,out/%,$(patsubst %.md,%.html,$(wildcard src/*.md src/quickref/*.md))) Makefile