[macOS] Add parallels kernel extension to macOS13 and macOS14 (#10238)

[macOS] Add parallels kernel extension to macOS13 and macOS14
This commit is contained in:
sarathrajsrinivasan
2024-08-19 06:57:44 -07:00
committed by GitHub
parent 59a0b3727b
commit c634b8cd67
9 changed files with 111 additions and 14 deletions

View File

@@ -290,7 +290,13 @@ if ($os.IsMonterey) {
$miscellaneous.AddToolVersion("Zlib", $(Get-ZlibVersion))
}
if ($os.IsMonterey) {
if ($os.IsSonomaX64 -or $os.IsVenturaX64) {
$miscellaneous = $installedSoftware.AddHeader("Miscellaneous")
}
if ($os.IsMonterey -or $os.IsSonomaX64 -or $os.IsVenturaX64) {
Write-Host "Adding environment variables for parallels"
$miscellaneousEnv = $miscellaneous.AddHeader("Environment variables")
$miscellaneousEnv.AddTable($(Build-MiscellaneousEnvironmentTable))