From 6e97419a6cfbfa2c578fdeea2216b985de1a9eae Mon Sep 17 00:00:00 2001 From: willcl-ark Date: Mon, 4 Dec 2023 09:54:22 +0000 Subject: [PATCH] makefile: use bash shell so github actions work --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index aa92f85..e25ec02 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,8 @@ production: clean all production-test ## https://github.com/bitcoinops/bitcoinops.github.io/pull/494#discussion_r546376335 export GIT_PAGER='_contrib/kill0' JEKYLL_FLAGS = --future --drafts --unpublished --incremental +## Needed for github actions to work properly +SHELL=/bin/bash clean: bundle exec jekyll clean @@ -61,5 +63,5 @@ pdf: mv onboarding-to-bitcoin-core.pdf bin/ epub: - asciidoctor -b epub3 -r asciidoctor-epub3 -r asciidoctor-diagram -o index.epub index_epub.adoc + bundle exec asciidoctor -b epub3 -r asciidoctor-epub3 -r asciidoctor-diagram -o index.epub index_epub.adoc mv index.epub bin/onboarding-to-bitcoin-core.epub