Skip to content

Commit

Permalink
Merge pull request #51 from mattcataws/feature/add-sequoia-support
Browse files Browse the repository at this point in the history
Add support for macOS Sequoia in the MOTD module
  • Loading branch information
mattcataws authored Sep 19, 2024
2 parents e45a68f + d3544d2 commit e247dee
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/ec2macosinit/motd.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ func getVersionName(osProductVersion string) (versionName string) {
versionName = "Ventura"
case strings.HasPrefix(osProductVersion, "14"):
versionName = "Sonoma"
case strings.HasPrefix(osProductVersion, "15"):
versionName = "Sequoia"
}

return versionName
Expand Down

0 comments on commit e247dee

Please sign in to comment.