Skip to content

Commit ce5d860

Browse files
committed
fix(build.ps1): fix if statement syntax
1 parent 26b04e3 commit ce5d860

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ 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) {
10+
If($env:APPVEYOR_REPO_TAG -eq $true) {
1111
echo "RUNNING dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts "
1212
dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts
1313
}

0 commit comments

Comments
 (0)