mirror of
https://github.com/sinbad/UEScripts.git
synced 2025-02-23 13:15:23 +00:00
7 lines
210 B
PowerShell
7 lines
210 B
PowerShell
|
# Simplify platform checks for Powershell < 6
|
||
|
if (-not $PSVersionTable.Platform) {
|
||
|
# This is Windows-only powershell
|
||
|
$global:IsWindows = $true
|
||
|
$global:IsLinux = $false
|
||
|
$global:IsMacOS = $false
|
||
|
}
|