diff --git a/Makefile b/Makefile index 544a94e..c1677b7 100644 --- a/Makefile +++ b/Makefile @@ -48,11 +48,11 @@ release: $(GO) run github.com/hymkor/latest-notes@latest | gh release create -d --notes-file - -t $(VERSION) $(VERSION) $(wildcard $(NAME)-$(VERSION)-*.zip) docs: - go run github.com/hymkor/minipage@latest -outline-in-sidebar -readme-to-index README.md > docs/index.html - go run github.com/hymkor/minipage@latest -outline-in-sidebar -readme-to-index README_ja.md > docs/index_ja.html + $(GO) run github.com/hymkor/minipage@latest -outline-in-sidebar -readme-to-index README.md > docs/index.html + $(GO) run github.com/hymkor/minipage@latest -outline-in-sidebar -readme-to-index README_ja.md > docs/index_ja.html readme: - go run github.com/hymkor/example-into-readme@latest - go run github.com/hymkor/example-into-readme@latest -target README_ja.md + $(GO) run github.com/hymkor/example-into-readme@latest + $(GO) run github.com/hymkor/example-into-readme@latest -target README_ja.md .PHONY: all test dist _dist clean manifest release docs