I'm not sure how this works, but I have this scenario:
- Installed
asdf
; - Installed plugin
golang
; - Installed golang
1.20.4
; - Then installed a go package using
go install moul.io/assh/v2@latest
; - This package gave me the
assh
shim binary; - Now I have updated the golang installation to
1.20.5
;
The scenario here is that the assh
package is still on the golang 1.20.4
.
So, if I uninstall this version, I will lose all my packages, right?
Which is the right way to deal with those "sub-packages" installed with which version?
Cheers Vitor Jr.