ps/Modules/Cole.PowerShell.Developer/Public/Test-IsMacOSPlatform.ps1

16 lines
263 B
PowerShell
Raw Permalink Normal View History

2023-05-30 22:51:22 -07:00
function Test-IsMacOSPlatform {
<#
.SYNOPSIS
Returns true if the platform is macOS
#>
[CmdletBinding()]
[OutputType([bool])]
param (
)
if (Test-IsUnixPlatform) {
return $PSVersionTable.OS -match "Darwin"
}
return $false
}