Skip to content

Commit 77fc4b9

Browse files
committed
cmd/makemac: add macOS 10.15 Catalina as an available builder version
Makemac has been unable to create a macOS 10.15 Catalina builder. The Catalina image is now available for creation. Updates golang/go#34748 Change-Id: Ibc6a5f64be4de5d2eb4a89002e29944c77b6627c Reviewed-on: https://go-review.googlesource.com/c/build/+/207737 Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent 5f5c45c commit 77fc4b9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

cmd/makemac/makemac.go

+4
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,10 @@ func (st *State) CreateMac(ctx context.Context, minor int) (slotName string, err
225225
// Mojave. Requires vSphere 6.7.
226226
// https://www.virtuallyghetto.com/2018/04/new-vsphere-6-7-apis-worth-checking-out.html
227227
guestType = "darwin18_64Guest"
228+
case 15:
229+
// Catalina. Requires vSphere 6.7 update 3.
230+
// https://docs.macstadium.com/docs/vsphere-67-update-3
231+
guestType = "darwin19_64Guest"
228232
default:
229233
return "", fmt.Errorf("unsupported makemac minor OS X version %d", minor)
230234
}

0 commit comments

Comments
 (0)