cmd/ebitenmobile: Use the better way to go-get dependencies

Updates #1487
This commit is contained in:
Hajime Hoshi 2021-02-12 02:45:02 +09:00
parent 7cd09649fc
commit c593c3f266

View File

@ -104,10 +104,9 @@ func prepareGomobileCommands() error {
return err
}
// To record gomobile to go.sum for Go 1.16 and later, go-get gomobile instaed of golang.org/x/mobile (#1487).
// This also records gobind as gomobile depends on gobind indirectly.
// To record gomobile and its dependencies to go.sum for Go 1.16 and later, go-get golang.org/x/mobile with `...` (#1487).
// Note that `go mod tidy` doesn't work since this removes all the indirect imports.
if err := runGo("get", "golang.org/x/mobile/cmd/gomobile@"+gomobileHash); err != nil {
if err := runGo("get", "golang.org/x/mobile/...@"+gomobileHash); err != nil {
return err
}
if localgm := os.Getenv("EBITENMOBILE_GOMOBILE"); localgm != "" {