mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2025-01-24 18:02:02 +01:00
parent
145f9f9588
commit
9313e3ad0d
@ -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 {
|
||||
|
@ -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)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user