Skip to content

Commit eba9200

Browse files
author
Bart Koelman
committed
reduce message writing
1 parent 393d600 commit eba9200

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Build.ps1

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,10 @@ function CreateNuGetPackage {
8181
}
8282

8383
if ([string]::IsNullOrWhitespace($versionSuffix)) {
84-
Write-Output "RUNNING dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts"
85-
dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts
84+
dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts
8685
}
8786
else {
88-
Write-Output "RUNNING dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts --version-suffix=$versionSuffix"
89-
dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts --version-suffix=$versionSuffix
87+
dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts --version-suffix=$versionSuffix
9088
}
9189

9290
CheckLastExitCode

0 commit comments

Comments
 (0)