Robbe Van der Gucht 34ccd57769
Don't create 'null' files on Windows
Suppressing emitted STDOUT from cmdlets is done with by piping to `Out-Null` instead of redirecting to `null`. That last option will create a new file on Windows.

```
# Don't do 
mkdir test > null

# Do 
mkdir test | Out-Null
```
2025-02-14 23:34:15 +01:00
..
2024-05-24 21:04:21 +02:00
2024-08-26 08:11:10 -03:00