ansible-doctor/Makefile
renovate[bot] a64d236f49
chore(deps): update dependency thegeeklab/hugo-geekdoc to v0.8.6 (#46)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-02-18 10:20:58 +01:00

21 lines
488 B
Makefile

# renovate: datasource=github-releases depName=thegeeklab/hugo-geekdoc
THEME_VERSION := v0.8.6
THEME := hugo-geekdoc
BASEDIR := docs
THEMEDIR := $(BASEDIR)/themes
.PHONY: all
all: doc
.PHONY: doc
doc: doc-assets
.PHONY: doc-assets
doc-assets:
mkdir -p $(THEMEDIR)/$(THEME)/ ; \
curl -sSL "https://github.com/thegeeklab/$(THEME)/releases/download/${THEME_VERSION}/$(THEME).tar.gz" | tar -xz -C $(THEMEDIR)/$(THEME)/ --strip-components=1
.PHONY: clean
clean:
rm -rf $(THEMEDIR) && \