Silence unnecessary output

This commit is contained in:
Manuel Thalmann 2024-03-20 18:12:24 +01:00
parent 734e463df4
commit 10a96402fe

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)) {