Skip to content

Commit cc05a5c

Browse files
authored
Fix mobile build on windows
gobind executable name is not exactly `gobind` on windows it's `gobind.exe` Signed-off-by: Devman <[email protected]>
1 parent 38f76dd commit cc05a5c

File tree

1 file changed

+9
-2
lines changed
  • cmd/internal/build_shared

1 file changed

+9
-2
lines changed

cmd/internal/build_shared/sdk.go

+9-2
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,15 @@ var GoBinPath string
8585

8686
func FindMobile() {
8787
goBin := filepath.Join(build.Default.GOPATH, "bin")
88-
if !rw.FileExists(goBin + "/" + "gobind") {
89-
log.Fatal("missing gomobile installation")
88+
89+
if runtime.GOOS == "windows" {
90+
if !rw.FileExists(goBin + "/" + "gobind.exe") {
91+
log.Fatal("missing gomobile.exe installation")
92+
}
93+
} else {
94+
if !rw.FileExists(goBin + "/" + "gobind") {
95+
log.Fatal("missing gomobile installation")
96+
}
9097
}
9198
GoBinPath = goBin
9299
}

0 commit comments

Comments
 (0)