Skip to content

Commit e247dee

Browse files
authored
Merge pull request #51 from mattcataws/feature/add-sequoia-support
Add support for macOS Sequoia in the MOTD module
2 parents e45a68f + d3544d2 commit e247dee

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/ec2macosinit/motd.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ func getVersionName(osProductVersion string) (versionName string) {
8484
versionName = "Ventura"
8585
case strings.HasPrefix(osProductVersion, "14"):
8686
versionName = "Sonoma"
87+
case strings.HasPrefix(osProductVersion, "15"):
88+
versionName = "Sequoia"
8789
}
8890

8991
return versionName

0 commit comments

Comments
 (0)