Skip to content

Commit 26b04e3

Browse files
committed
debug(appveyor): log the command being executed
the search continues
1 parent d2fff47 commit 26b04e3

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

Build.ps1

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,11 @@ dotnet build .\src\JsonApiDotNetCore -c Release
77
echo "APPVEYOR_REPO_TAG: $env:APPVEYOR_REPO_TAG"
88
echo "VERSION-SUFFIX: alpha1-$revision"
99

10-
If($env:APPVEYOR_REPO_TAG) { dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts }
11-
Else { dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts --version-suffix=alpha1-$revision }
10+
If($env:APPVEYOR_REPO_TAG) {
11+
echo "RUNNING dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts "
12+
dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts
13+
}
14+
Else {
15+
echo "RUNNING dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts --version-suffix=alpha1-$revision"
16+
dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts --version-suffix=alpha1-$revision
17+
}

0 commit comments

Comments
 (0)