Use go env GOPATH to determine the GOPATH (#658)
The GOPATH env variable usually is not set on any system because Go uses its own env management via `go env` command. Also `go env GOPATH` is not on all systems the same as `$HOME/go`. On such systems topgrade would use the wrong GOPATH. If the `go` command is installed then `go env GOPATH` will always print something. If GOPATH is set then `go env GOPATH` will print the value of GOPATH, otherwise `go env GOPATH` will print the GOPATH value of the Go env config.
This commit is contained in:
@@ -286,7 +286,7 @@ fn run() -> Result<()> {
|
||||
runner.execute(Step::Choosenim, "choosenim", || generic::run_choosenim(&ctx))?;
|
||||
runner.execute(Step::Cargo, "cargo", || generic::run_cargo_update(run_type))?;
|
||||
runner.execute(Step::Flutter, "Flutter", || generic::run_flutter_upgrade(run_type))?;
|
||||
runner.execute(Step::Go, "Go", || generic::run_go(&base_dirs, run_type))?;
|
||||
runner.execute(Step::Go, "Go", || generic::run_go(run_type))?;
|
||||
runner.execute(Step::Emacs, "Emacs", || emacs.upgrade(run_type))?;
|
||||
runner.execute(Step::Opam, "opam", || generic::run_opam_update(run_type))?;
|
||||
runner.execute(Step::Vcpkg, "vcpkg", || generic::run_vcpkg_update(run_type))?;
|
||||
|
||||
Reference in New Issue
Block a user