From 1f546b0974600ce619cb721ea9822d60c9ffe9a2 Mon Sep 17 00:00:00 2001 From: Dimitar Milov Date: Fri, 9 Apr 2021 18:09:19 +0300 Subject: [PATCH] Adress review comment removing the entire catalog file logic from build.ps1 Signed-off-by: Dimitar Milov --- build.ps1 | 8 -------- 1 file changed, 8 deletions(-) diff --git a/build.ps1 b/build.ps1 index 61ff0d5..11fdacc 100644 --- a/build.ps1 +++ b/build.ps1 @@ -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 -}