From b456d1770d67c3c8aa1b96e6ed372aa90c54b840 Mon Sep 17 00:00:00 2001 From: HAYAMA Kaoru <3752189+hymkor@users.noreply.github.com> Date: Sat, 14 Feb 2026 21:48:55 +0900 Subject: [PATCH] Makefile: `make readme` and `make docs` uses $(GO) - go1.20.14 instead of latest go --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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