From 13719748fb912bc11309b151030eabc4ea3ea8fc Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Mon, 13 Apr 2020 15:43:44 +0200 Subject: [PATCH] fix makefile --- Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 52b073b..66e0e19 100644 --- a/Makefile +++ b/Makefile @@ -11,16 +11,16 @@ doc: doc-assets doc-generate .PHONY: doc-assets doc-assets: - mkdir -p $(THEME_DIR)/$(THEME)/; \ - curl -sSL https://github.com/xoxys/$(THEME)/releases/$${GEEKDOC_VERSION}/download/$(THEME).tar.gz | tar -xz -C $(THEME_DIR)/$(THEME)/ --strip-components=1 + mkdir -p $(THEME_DIR)/$(THEME)/ ; \ + curl -sSL "https://github.com/xoxys/$(THEME)/releases/$${GEEKDOC_VERSION}/download/$(THEME).tar.gz" | tar -xz -C $(THEME_DIR)/$(THEME)/ --strip-components=1 .PHONY: doc-generate doc-generate: - cd $(BASE_DIR); \ - cp templates/usage_index.md content/usage/_index.md; \ - pydocmd simple corenetworks+ corenetworks.authenticators++ corenetworks.client++ corenetworks.exceptions++ >> content/usage/_index.md + cd $(BASE_DIR) ; \ + cp templates/usage_index.md content/usage/_index.md ; \ + pydocmd simple corenetworks.authenticators++ corenetworks.client++ corenetworks.exceptions++ >> content/usage/_index.md .PHONY: clean clean: - rm -rf $(THEME_DIR) && \ - rm -f content/usage/_index.md + rm -rf $(THEME_DIR) && \ + rm -f $(BASE_DIR)/content/usage/_index.md