From bf84e9fe41edf485a80eb3c59d24a18b7e117041 Mon Sep 17 00:00:00 2001 From: Wataru Sato Date: Fri, 13 May 2022 17:14:50 +0900 Subject: [PATCH] fix --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index fc3f624..b7e21c9 100644 --- a/Makefile +++ b/Makefile @@ -22,14 +22,14 @@ show-version: $(GOBIN)/gobump @gobump show -r $(VERSION_PATH) $(GOBIN)/gobump: - @cd && go install github.com/x-motemen/gobump/cmd/gobump + @cd && go install github.com/x-motemen/gobump/cmd/gobump@latest .PHONY: cross cross: $(GONAME)/goxz goxz -n $(NAME) -pv=v$(VERSION) -build-ldflags=$(BUILD_LDFLAGS) ./cmd/$(NAME) $(GONAME)/goxz: - cd && go install github.com/Songmu/goxz/cmd/goxz + cd && go install github.com/Songmu/goxz/cmd/goxz@latest .PHONY: test test: build @@ -53,4 +53,4 @@ upload: $(GONAME)/ghr ghr "v$(VERSION)" goxz $(GONAME)/ghr: - cd && go install github.com/tcnksm/ghr + cd && go install github.com/tcnksm/ghr@latest