This commit is contained in:
Or Shemesh 2022-07-13 15:56:47 +03:00
Родитель c4d70a9fa7
Коммит 5c6a476e8c
1 изменённых файлов: 1 добавлений и 2 удалений

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

@ -15,8 +15,7 @@ $exitCode += $LASTEXITCODE;
Write-Host "start: Get dist folder files"
& dir "dist"
$dir = './dist'
$hasAnySubdir = (Get-ChildItem -Force -Directory $dir).Count -gt 0
$hasAnySubdir = (Get-ChildItem -Force -Directory './dist').Count -gt 0
If ($hasAnySubdir) {
Write-Host "Error: dist folder has subfolders!"
$exitCode += 1;