Skip to content

Commit e4ad657

Browse files
authored
feat: add support for macOS Golden Gate (27.x) in the MOTD module (#74)
1 parent c1290f8 commit e4ad657

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

lib/ec2macosinit/motd.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@ func getVersionName(osProductVersion string) (versionName string) {
8888
versionName = "Sequoia"
8989
case strings.HasPrefix(osProductVersion, "26"):
9090
versionName = "Tahoe"
91+
case strings.HasPrefix(osProductVersion, "27"):
92+
versionName = "Golden Gate"
9193
}
9294

9395
return versionName

0 commit comments

Comments
 (0)