Create json package property parent directory (#3378)

* Create json package property parent directory
This commit is contained in:
praveenkuttappan 2022-05-26 13:35:46 -04:00 коммит произвёл GitHub
Родитель fb8216210e
Коммит 0967d064fc
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -108,6 +108,12 @@ if ($allPackageProperties)
}
$outputPath = Join-Path -Path $outDirectory "$configFilePrefix.json"
Write-Host "Output path of json file: $outputPath"
$outDir = Split-Path $outputPath -parent
if (-not (Test-Path -path $outDir))
{
Write-Host "Creating directory $($outDir) for json property file"
New-Item -ItemType Directory -Path $outDir
}
SetOutput $outputPath $pkg
}