We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a11a75c commit 30e8687Copy full SHA for 30e8687
build/SetBuildEnv.ps1
@@ -9,7 +9,7 @@ if ( $env:APPVEYOR_REPO_TAG -ne "True" )
9
$daysSpan = $now - ( New-Object DateTime( $now.Year, 1, 1 ) )
10
$env:PackageVersion = "${version}-{0:yy}{1:000}" -f @( $now, $daysSpan.Days )
11
}
12
- else if ( ${version} -match "^[\d.]+$" )
+ elseif ( ${version} -match "^[\d.]+$" )
13
{
14
$env:PackageVersion = "${version}-final-${env:APPVEYOR_BUILD_NUMBER}"
15
0 commit comments