fix(ci): make directory before make index

This commit is contained in:
Daylin Morgan 2022-08-13 12:58:25 -05:00
parent cc1991c5d4
commit de985f2a06

View file

@ -11,8 +11,8 @@ all:
@mkdir -p docs/svg @mkdir -p docs/svg
@$(MAKE) svgs @$(MAKE) svgs
@echo "==> Generating PNGs <==" @echo "==> Generating PNGs <=="
@cat docs/index.html | sed 's/svg/png/g' | sed 's/\.\/png/\./g' > docs/png/index.html
@mkdir -p docs/png @mkdir -p docs/png
@cat docs/index.html | sed 's/svg/png/g' | sed 's/\.\/png/\./g' > docs/png/index.html
@$(MAKE) pngs @$(MAKE) pngs
.PHONY: pngs .PHONY: pngs