Files

9 lines
206 B
Makefile

.PHONY: action-docs
action-docs: check-npx
npx --yes action-docs --update-readme
.PHONY: check-npx
check-npx:
$(if $(shell which npx),,\
$(error No npx execuable found in PATH, please install NodeJS))