Skip to content

Commit 44ee10a

Browse files
committed
invert condition check for appveyor tag
1 parent 1c9de6a commit 44ee10a

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
@@ -100,7 +100,7 @@ if($SourceLinkEnable)
100100

101101
$versionProps = [xml](Get-Content "version.props")
102102

103-
if($Env:APPVEYOR_REPRO_TAG)
103+
if(-not $Env:APPVEYOR_REPRO_TAG)
104104
{
105105
if([string]::IsNullOrWhiteSpace($versionProps.Project.PropertyGroup.VersionSuffix))
106106
{

0 commit comments

Comments
 (0)