Make sure bin dir exists before using it

This commit is contained in:
Steve Otteson 2020-11-20 16:40:36 -08:00
Родитель 46b25ffba1
Коммит 1da8337562
1 изменённых файлов: 8 добавлений и 0 удалений

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

@ -26,4 +26,12 @@ $toolsDir = "$rootDir\tools"
$binDir = "$rootDir\bin"
$sourcesDir = "$rootDir\sources"
if (Test-Path -Path $binDir -PathType leaf)
{
Remove-Item $binDir
}
if (!(Test-Path -Path $binDir))
{
New-Item -ItemType Directory -Force -Path $binDir | Out-Null
}