From b6f01e90c276cf8a382f05031afabcb159f5c7c5 Mon Sep 17 00:00:00 2001 From: Ralph von der Heyden Date: Mon, 6 Mar 2023 01:17:52 +0100 Subject: [PATCH] Fix relase rule in main makefile (#56) The README says `make release` should build the ebooks, but it's building the PDF (same command as in `make build_book`). Maybe this should run `make release` inside the books folder? --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index dc2fa92..a2536c4 100644 --- a/makefile +++ b/makefile @@ -4,7 +4,7 @@ build_book: build_docker_image .PHONY: release release: build_docker_image - docker run -it -v $(PWD):/opt/repo the-sourdough-framework /bin/bash -c "cd /opt/repo/book && make build_pdf" + docker run -it -v $(PWD):/opt/repo the-sourdough-framework /bin/bash -c "cd /opt/repo/book && make release" .PHONY: build_docker_image build_docker_image: