Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
153 changes: 0 additions & 153 deletions eng/common/Update-Change-Log.ps1

This file was deleted.

6 changes: 3 additions & 3 deletions eng/common/scripts/Update-ChangeLog.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ param (
[String]$ServiceDirectory,
[Parameter(Mandatory = $true)]
[String]$PackageName,
[String]$Unreleased=$True,
[String]$ReplaceLatestEntryTitle = $False,
[String]$Unreleased = "true", #Argument is string becasue of the different ways the script is called in the various repos.
[String]$ReplaceLatestEntryTitle = "false",
[String]$ReleaseDate
)

Expand All @@ -23,7 +23,7 @@ param (
. (Join-Path $PSScriptRoot common.ps1)

if ($ReleaseDate -and $Unreleased) {
LogError "Do not pass 'ReleaseDate' arguement when 'Unreleased' is true"
LogError "Do not pass 'ReleaseDate' argument when 'Unreleased' is true"
exit 1
}

Expand Down