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
This causes other parts of the extension to fail to detect the problem
(incomplete go installation or misconfigured PATH issue) early but
confuse users later with other error messages.
This is a regression caused in v0.20.0
The text was updated successfully, but these errors were encountered:
https://go-review.googlesource.com/c/vscode-go/+/276493 meant
to add /usr/local/bin/go to the default path to search, but introduced
a bug - we shouldn't return the path if the go binary doesn't exist.
TODO: This function got complicated over time and deserves proper testing.
For #971Fixes#1065
Change-Id: I3ddf90983a1f66d6d76a3f9a50eb528a93904f3c
Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/279727
Trust: Hyang-Ah Hana Kim <hyangah@gmail.com>
Reviewed-by: Rebecca Stambler <rstambler@golang.org>
(cherry picked from commit dd9c54f)
Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/280592
Run-TryBot: Hyang-Ah Hana Kim <hyangah@gmail.com>
Reviewed-by: Suzy Mueller <suzmue@golang.org>
TryBot-Result: kokoro <noreply+kokoro@google.com>
src/utils/pathUtils: return the default go path only if exists
https://go-review.googlesource.com/c/vscode-go/+/276493 meant
to add /usr/local/bin/go to the default path to search, but introduced
a bug - we shouldn't return the path if the go binary doesn't exist.
This causes other parts of the extension to fail to detect the problem
(incomplete go installation or misconfigured PATH issue) early but
confuse users later with other error messages.
This is a regression caused in v0.20.0
The text was updated successfully, but these errors were encountered: