Skip to content

Commit 24b036d

Browse files
Merge pull request #2070 from falconizmi/fix-golangci-install-url
fix: use golangci-lint main branch for install script
2 parents 1127435 + c98a878 commit 24b036d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ $(GINKGO): $(LOCALBIN)
420420

421421
.PHONY: golangci-lint
422422
GOLANGCILINT := $(LOCALBIN)/golangci-lint
423-
GOLANGCI_URL := https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh
423+
GOLANGCI_URL := https://raw.githubusercontent.com/golangci/golangci-lint/main/install.sh
424424
golangci-lint: $(GOLANGCILINT) ## Download golangci-lint
425425
$(GOLANGCILINT): $(LOCALBIN)
426426
test -s $@ || { curl -sSfL $(GOLANGCI_URL) | sh -s -- -b $(LOCALBIN) $(GOLANGCI_VERSION); }

0 commit comments

Comments
 (0)