mirror of
https://github.com/microsoft/terminal.git
synced 2026-09-25 00:15:10 +00:00
4 lines
170 B
PowerShell
4 lines
170 B
PowerShell
|
|
if($PSVersionTable.PSVersion.Major -lt 7){
|
||
|
|
Write-Error "Incorrect version of PowerShell installed.`nMake sure you have at least PowerShell Core 7.0.0."
|
||
|
|
Exit 1
|
||
|
|
}
|