commit 96fddd8b71e028067e3a8280c2887d572a9ffb8d parent 1f813f5e70addb00b3207128728d0832691d4154 Author: Iván Ávalos <avalos@disroot.org> Date: Mon, 4 Mar 2024 16:40:00 -0600 check for pandoc instead of htmlark in bootstrap Diffstat:
| M | bootstrap | | | 5 | ++--- |
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git 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