cmd/ebitenmobile: Remove gomobile init

`gomobile init` installs gobind at $GOPATH/bin, but this is not
needed for ebitenmobile.

Updates #1666
This commit is contained in:
Hajime Hoshi 2021-06-09 12:07:24 +09:00
parent d06e9c140c
commit f4574590b5

View File

@ -137,9 +137,7 @@ func prepareGomobileCommands() error {
return err
}
if err := runCommand("gomobile", []string{"init"}, nil); err != nil {
return err
}
// `gomobile init` is not needed. This just ensures the existence of the latest gobind command.
return nil
}