-
-
Notifications
You must be signed in to change notification settings - Fork 805
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow installation via go install
#1698
Comments
The $go version
go version go1.21.5 linux/amd64 |
Seems that Line 228 in 85b3568
|
Git blame suggests |
Maybe dependent on (or blocked by?) |
For what it's worth, forking and removing that line (and changing the first line) in $go install github.com/edthedev/wtf@ba90358
go: downloading github.com/edthedev/wtf v0.0.0-20240520021219-ba90358e748d
go: downloading github.com/logrusorgru/aurora/v4 v4.0.0
go: downloading github
... But it did not result in the expected This seems likely to be related to: (Essentially, |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
What should it do?
The current instructions to install via
go get
are deprecated in the recent versions ofgo
.Following the steps in README.md,
go get -u github.com/wtfutil/wtf
gives this error:Running
go install
(which is a great way to install command line utilities) gives this error:It would be terrific to be able to install
wtfutil
usinggo install
. I have found it to be a reliable way to install command line utilities, in particular.The text was updated successfully, but these errors were encountered: