mirror of
https://github.com/golang/go
synced 2024-11-05 16:06:10 -07:00
9badcbe49b
There is nothing else we can do other than just showing a message that user need to remove it from their PATH not to conflict with the current installation. Fixes #21217. Change-Id: Ie65385f4d536d5bb789387ba0229f54f2ee793f0 Reviewed-on: https://go-review.googlesource.com/51930 Run-TryBot: Jaana Burcu Dogan <jbd@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Kevin Burke <kev@inburke.com>
37 lines
853 B
Go
37 lines
853 B
Go
// Copyright 2017 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"os/exec"
|
|
"runtime"
|
|
"strings"
|
|
)
|
|
|
|
// arch contains either amd64 or 386.
|
|
var arch = func() string {
|
|
cmd := exec.Command("uname", "-m") // "x86_64"
|
|
if runtime.GOOS == "windows" {
|
|
cmd = exec.Command("powershell", "-command", "(Get-WmiObject -Class Win32_ComputerSystem).SystemType") // "x64-based PC"
|
|
}
|
|
|
|
out, err := cmd.Output()
|
|
if err != nil {
|
|
// a sensible default?
|
|
return "amd64"
|
|
}
|
|
if bytes.Contains(out, []byte("64")) {
|
|
return "amd64"
|
|
}
|
|
return "386"
|
|
}()
|
|
|
|
func findGo(ctx context.Context, cmd string) (string, error) {
|
|
out, err := exec.CommandContext(ctx, cmd, "go").CombinedOutput()
|
|
return strings.TrimSpace(string(out)), err
|
|
}
|