You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While use of the tap is discouraged, there are times that homebrew core doesn't immediately update the formula to the latest version. This provides docs on using the tap to help get the latest released quicker through brew.
Copy file name to clipboardExpand all lines: docs/src/docs/usage/install/index.mdx
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,13 @@ brew install golangci-lint
53
53
brew upgrade golangci-lint
54
54
```
55
55
56
-
Note: previously we use [tap](https://github.com/golangci/homebrew-tap), but it is obsoleted. We recommend using official formula instead of an obsolete tap.
56
+
Note: Previously we used a [homebrew tap](https://github.com/golangci/homebrew-tap). We recommend using official formula instead of the tap, but sometimes the most recent release
57
+
isn't immediately available via homebrew core. In this case, the tap formula can be used to install the latest version of `golangci-lint`:
58
+
59
+
```
60
+
brew tap golangci/tap
61
+
brew install golangci/tap/golangci-lint
62
+
```
57
63
58
64
It can also be installed through [macports](https://www.macports.org/)
59
65
The macports installation mode is community driven, and not officially maintained by golangci team.
0 commit comments