From 96fddd8b71e028067e3a8280c2887d572a9ffb8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20=C3=81valos?= Date: Mon, 4 Mar 2024 16:40:00 -0600 Subject: check for pandoc instead of htmlark in bootstrap --- bootstrap | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/bootstrap b/bootstrap index 10bd617f8..a2d0c3b5d 100755 --- a/bootstrap +++ b/bootstrap @@ -8,9 +8,8 @@ if ! git --version >/dev/null; then exit 1 fi -if ! htmlark --version >/dev/null; then - echo "htmlark not installed" - echo "Run 'pip install htmlark'" +if ! pandoc --version >/dev/null; then + echo "pandoc not installed" exit 1 fi -- cgit v1.2.3