From e68248e7bdc6b6312d532df245199adeb6d16a3c Mon Sep 17 00:00:00 2001 From: Medeni Baykal <433724+Haplois@users.noreply.github.com> Date: Fri, 8 Apr 2022 08:55:41 +0200 Subject: [PATCH] Build script fixed. (#3554) --- scripts/build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.ps1 b/scripts/build.ps1 index 9468bb6ba5..f5fe085bc5 100644 --- a/scripts/build.ps1 +++ b/scripts/build.ps1 @@ -890,7 +890,7 @@ function Create-NugetPackages { # Remove all locally built nuget packages before we start creating them # we are leaving them in the folder after uzipping them for easier review. if (Test-Path $packageOutputDir) { - Remove-Item $packageOutputDir -Recurse -Force + Remove-Item $packageOutputDir -Recurse -Force -Exclude "manifest","source-build" } if (-not (Test-Path $packageOutputDir)) {