cmd/ebitenmobile: Use 'go' directly

See golang/go#26845.
This commit is contained in:
Hajime Hoshi 2020-01-24 22:50:48 +09:00
parent 145f9f9588
commit 9313e3ad0d
2 changed files with 2 additions and 6 deletions

View File

@ -20,7 +20,6 @@ import (
"os"
"os/exec"
"path/filepath"
"runtime"
)
const gomobileHash = "82c397c4c5279f331dce14d734fda7060e4a3691"
@ -55,8 +54,7 @@ func runGo(args ...string) error {
env := []string{
"GO111MODULE=on",
}
gocmd := filepath.Join(runtime.GOROOT(), "bin", "go")
return runCommand(gocmd, args, env)
return runCommand("go", args, env)
}
func prepareGomobileCommands() error {

View File

@ -22,7 +22,6 @@ import (
"os"
"os/exec"
"path/filepath"
"runtime"
"strings"
"text/template"
@ -46,8 +45,7 @@ func goEnv(name string) string {
if val := os.Getenv(name); val != "" {
return val
}
gocmd := filepath.Join(runtime.GOROOT(), "bin", "go")
val, err := exec.Command(gocmd, "env", name).Output()
val, err := exec.Command("go", "env", name).Output()
if err != nil {
panic(err)
}