Fix: PowerShell writes to output stream by default (#1340)

Write-Host is superfluous, because PowerShell sends everything to output stream by default.
This commit is contained in:
Giorgi Chakhidze 2022-03-31 15:45:26 +04:00 committed by GitHub
parent c73c8a4d1a
commit 2c329b106d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1 +1 @@
Write-Host 'Hello World'
'Hello World'