From 38c117afe2b179e35401c2253d8144a8c9ba72c9 Mon Sep 17 00:00:00 2001 From: Daniil Pavliuchyk Date: Wed, 6 Dec 2023 15:51:09 +0200 Subject: [PATCH] Remove build folders after building --- tests/build-test.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/build-test.ps1 b/tests/build-test.ps1 index 43057460..bbe89bd9 100644 --- a/tests/build-test.ps1 +++ b/tests/build-test.ps1 @@ -64,6 +64,7 @@ function Test-Template { # Build Exec { dotnet build $outDir/$lang/$folderName -bl:$bl } + Remove-Item -Recurse $outDir/$lang/$folderName } function Create-And-Build { @@ -86,6 +87,7 @@ function Create-And-Build { # Build Exec { dotnet build output/$lang/$folderName -bl:$bl } + Remove-Item -Recurse $outDir/$lang/$folderName } if (Test-Path "output") {