Skip to content

Commit b64eac3

Browse files
authored
Merge pull request #11653 from dongjoon-hyun/patch-1
Fix a download link to use arm64 instead of amd64
2 parents dabad77 + 4eb3c63 commit b64eac3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/minikube/cmd/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ func Execute() {
9797

9898
if runtime.GOOS == "darwin" && detect.IsAmd64M1Emulation() {
9999
exit.Message(reason.WrongBinaryM1, "You are trying to run amd64 binary on M1 system. Please use darwin/arm64 binary instead (Download at {{.url}}.)",
100-
out.V{"url": notify.DownloadURL(version.GetVersion(), "darwin", "amd64")})
100+
out.V{"url": notify.DownloadURL(version.GetVersion(), "darwin", "arm64")})
101101
}
102102

103103
_, callingCmd := filepath.Split(os.Args[0])

0 commit comments

Comments
 (0)