Skip to content

Commit

Permalink
Fix typo in script
Browse files Browse the repository at this point in the history
  • Loading branch information
Oren Novotny committed Sep 23, 2016
1 parent cf3a9d3 commit b84974d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Ix.NET/Source/build-new.ps1
Expand Up @@ -44,7 +44,7 @@ $tag = $versionObj.PreReleaseLabel
$preRelNum = $versionObj.CommitsSinceVersionSourcePadded

if($tag -ne ""){
if($preRelNum -ne "00000" {
if($preRelNum -ne "00000") {
$version = "$version-$tag-$preRelNum"
}
else {
Expand Down
2 changes: 1 addition & 1 deletion Rx.NET/Source/build-new.ps1
Expand Up @@ -44,7 +44,7 @@ $tag = $versionObj.PreReleaseLabel
$preRelNum = $versionObj.CommitsSinceVersionSourcePadded

if($tag -ne ""){
if($preRelNum -ne "00000" {
if($preRelNum -ne "00000") {
$version = "$version-$tag-$preRelNum"
}
else {
Expand Down

0 comments on commit b84974d

Please sign in to comment.