Silence unnecessary output

This commit is contained in:
Manuel Thalmann 2024-03-20 18:12:24 +01:00
parent c17b04bf41
commit 325371140e

View file

@ -31,7 +31,7 @@ $null = New-Module {
$dirName = Split-Path -Parent $fileName;
if (-not (Test-Path -PathType Container $dirName)) {
New-Item -ItemType Directory $dirName;
$null = New-Item -ItemType Directory $dirName;
}
if ((Test-Path -PathType Leaf $fileName) -and (-not $Overwrite)) {