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
..
2025-02-10 09:02:00 -05:00
2025-02-12 18:18:20 +08:00
2024-05-24 21:02:10 +02:00
2024-12-26 00:16:42 +08:00
2022-06-22 22:28:11 -03:00
2022-05-30 03:54:17 +09:00
2023-04-25 22:09:46 +02:00
2024-08-07 07:26:25 -03:00
2023-08-25 15:37:17 +03:00
2022-04-20 19:29:42 +08:00
2024-02-03 20:37:11 +08:00