Skip to content

Commit af3119d

Browse files
authored
Makefile: make readme and make docs use $(GO) - go1.20.14 instead of latest go (#45)
1 parent 2d2b48b commit af3119d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ release:
4848
$(GO) run github.com/hymkor/latest-notes@latest | gh release create -d --notes-file - -t $(VERSION) $(VERSION) $(wildcard $(NAME)-$(VERSION)-*.zip)
4949

5050
docs:
51-
go run github.com/hymkor/minipage@latest -outline-in-sidebar -readme-to-index README.md > docs/index.html
52-
go run github.com/hymkor/minipage@latest -outline-in-sidebar -readme-to-index README_ja.md > docs/index_ja.html
51+
$(GO) run github.com/hymkor/minipage@latest -outline-in-sidebar -readme-to-index README.md > docs/index.html
52+
$(GO) run github.com/hymkor/minipage@latest -outline-in-sidebar -readme-to-index README_ja.md > docs/index_ja.html
5353

5454
readme:
55-
go run github.com/hymkor/example-into-readme@latest
56-
go run github.com/hymkor/example-into-readme@latest -target README_ja.md
55+
$(GO) run github.com/hymkor/example-into-readme@latest
56+
$(GO) run github.com/hymkor/example-into-readme@latest -target README_ja.md
5757

5858
.PHONY: all test dist _dist clean manifest release docs

0 commit comments

Comments
 (0)