-
Notifications
You must be signed in to change notification settings - Fork 74
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
Gimme known argument empty output #172
Comments
Could not reproduce this behavior. One possible cause would be if the file |
Here's the gist While testing I found 2 things
PS: I don't have much experience in shell scripting. I came to the above conclusion after doing a couple of Google searches so I may be wrong. |
I was able to reproduce this issue. Inside Line 523 in b31d2f2
Since gimme sets errexit option, this terminates the script immediately, and we are left with no output from the () subshell, which feeds nothing to the following pipeline of grep | _version_sort | uniq .
It is not clear to me why |
Ah, I guess we call |
indeed this line is the root cause of the error when there are no accessible go binary from the path Line 523 in 8a1149c
|
gimme --known
doesn't output anything. Technically it should return a list of go versions that could be installed.Note: I cloned the repository and ran
./gimme --known
The text was updated successfully, but these errors were encountered: