Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Using an empty string as parameter not works in pwsh. **This code fails in PS7.x** ```powershell $a = "" docker ps $a ``` **This code works in PS5.x and PS7.x** ```powershell $a = $null docker ps $a ```
- Loading branch information