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-08 12:18:33 +05:45
2025-02-14 14:29:44 +08:00
2024-10-09 15:51:07 +08:00
2024-07-27 07:01:36 -03:00
2023-10-24 21:51:49 +02:00
2024-10-03 00:06:28 -05:00
2022-04-12 12:43:15 +08:00
2023-03-02 18:34:57 +01:00
2024-07-21 16:44:46 -03:00
2024-12-30 16:36:33 +04:00
2023-08-25 15:34:29 +03:00
2022-04-11 21:56:34 +08:00
2024-02-03 20:27:46 +08:00