Build script fix for deleing output folder in use

This commit is contained in:
Josef Nemec 2025-06-11 17:08:37 +02:00
parent e27cd6e52f
commit 1545c67f99

View File

@ -123,7 +123,7 @@ if (!$SkipBuild)
{
if (Test-Path $OutputDir)
{
Remove-Item $OutputDir -Recurse -Force
Remove-Item "$OutputDir\*" -Recurse -Force
}
if ($LicensedDependenciesUrl)