Skip to content

Commit

Permalink
Sync eng/common directory with azure-sdk-tools for PR 1763 (#14938)
Browse files Browse the repository at this point in the history
* Disable release date check

* Release check is not finding release date

Co-authored-by: Praveen Kuttappan <[email protected]>
  • Loading branch information
azure-sdk and praveenkuttappan authored Jun 30, 2021
1 parent d7e302a commit 48e47a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eng/common/scripts/Package-Properties.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class PackageProps
$this.ChangeLogPath = Join-Path $directoryPath "CHANGELOG.md"
# Get release date for current version and set in package property
$changeLogEntry = Get-ChangeLogEntry -ChangeLogLocation $this.ChangeLogPath -VersionString $this.Version
if ($changeLogEntry -and !$changeLogEntry.ReleaseStatus)
if ($changeLogEntry -and $changeLogEntry.ReleaseStatus)
{
$this.ReleaseStatus = $changeLogEntry.ReleaseStatus.Trim().Trim("()")
}
Expand Down

0 comments on commit 48e47a2

Please sign in to comment.