Make sure bin dir exists before using it
This commit is contained in:
Родитель
46b25ffba1
Коммит
1da8337562
|
@ -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
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче