From 663f9d68eefc041211661cd9980f4b6ce75c822b Mon Sep 17 00:00:00 2001 From: Tamas Gal <tgal@km3net.de> Date: Tue, 27 Oct 2020 15:18:50 +0100 Subject: [PATCH] Deactivate deliverable creation --- Makefile | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 49a40ff..cb60681 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -DELIVERABLES_MD = $(shell find Deliverable_*-*.md) -DELIVERABLES_DOCX = $(subst .md,.docx,$(DELIVERABLES_MD)) +# DELIVERABLES_MD = $(shell find Deliverable_*-*.md) +# DELIVERABLES_DOCX = $(subst .md,.docx,$(DELIVERABLES_MD)) venv: requirements.txt test -d venv || python3 -m venv venv @@ -15,11 +15,13 @@ html: venv sphinx-build . public ) -$(DELIVERABLES_DOCX): $(DELIVERABLES_MD) - @pandoc -s $< -o $@ +# $(DELIVERABLES_DOCX): $(DELIVERABLES_MD) +# @pandoc -s $< -o $@ -deliverables: $(DELIVERABLES_DOCX) +# deliverables: $(DELIVERABLES_DOCX) +portal-dev: + docker run --rm -it -v $(pwd):/src -p 1313:1313 klakegg/hugo:0.76.5 server clean: rm -rf venv public -- GitLab