2019-12-13 09:48:00 -05:00
|
|
|
################################################################################
|
|
|
|
|
## File: Validate-PowershellCore.ps1
|
|
|
|
|
## Desc: Validate Powershell Core
|
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
|
|
if (Get-Command -Name 'pwsh')
|
|
|
|
|
{
|
2020-06-02 20:07:12 +03:00
|
|
|
Write-Host 'pwsh is on PATH'
|
2019-12-13 09:48:00 -05:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2020-06-02 20:07:12 +03:00
|
|
|
Write-Host 'pwsh is not on PATH'
|
2019-12-13 09:48:00 -05:00
|
|
|
exit 1
|
|
|
|
|
}
|
|
|
|
|
|