From 158e356ac07c17f659c1a24f71e223596700b632 Mon Sep 17 00:00:00 2001 From: Chebotov Nickolay Date: Sat, 10 Dec 2022 11:09:45 +0300 Subject: [PATCH] build: Fix Build.ps1 --- Build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Build.ps1 b/Build.ps1 index cdb422e..48572bd 100644 --- a/Build.ps1 +++ b/Build.ps1 @@ -20,7 +20,7 @@ foreach ($src in ls src/*) { echo "build: Packaging project in $src" - & dotnet pack -c Release -o ..\..\artifacts --version-suffix $suffix + & dotnet pack -c Release -o ..\..\artifacts if($LASTEXITCODE -ne 0) { exit 1 } Pop-Location