Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enhancement - Windows PowerShell 5.1 compatibility in actions_bootstr…
…ap.ps1 Enhanced Windows check while installing Pester to support Windows PowerShell 5.1. It currently checks for $IsWindows, which was only introduced in PowerShell 6. I updated it to `-and ($IsWindows -or $PSVersionTable.PSVersion -ge [version]'5.1')` but if minimal code is desired, it could be simplified to `-and $PSVersionTable.PSVersion -ge [version]'5.1')`.
- Loading branch information