less verbose output on dir creation

This commit is contained in:
Baipyrus 2024-08-27 14:16:49 +02:00
parent 0a9a29c119
commit a95be81cfd

View File

@ -84,7 +84,7 @@ function ProcessUrlFiles
$appname = $sourceDir.Split('\')[-1] $appname = $sourceDir.Split('\')[-1]
$tmpApp = "$env:TMP\$appname-config" $tmpApp = "$env:TMP\$appname-config"
if (-not (Test-Path $tmpApp)) if (-not (Test-Path $tmpApp))
{ New-Item -ItemType Directory -Path $tmpApp { New-Item -ItemType Directory -Path $tmpApp 2>$null
} }
# Find all .url files in the source directory # Find all .url files in the source directory