Adress review comment removing the entire catalog file logic from build.ps1

Signed-off-by: Dimitar Milov <dmilov@vmware.com>
This commit is contained in:
Dimitar Milov 2021-04-09 18:09:19 +03:00
parent cd4fb93c87
commit 1f546b0974
1 changed files with 0 additions and 8 deletions

View File

@ -90,11 +90,3 @@ Start-Tests -TestsType 'unit'
# 5. Run Integration Tests
Start-Tests -TestsType 'integration'
# 6. Prepare Module for Publishing
$dirItem = Get-Item $OutputDir
$catalogFilePath = Join-path $OutputDir ($dirItem.Name + ".cat")
if (Test-Path $catalogFilePath) {
# Delete previous catalog file
Remove-Item $catalogFilePath -Confirm:$false
}