Skip to content
Closed
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
2 changes: 1 addition & 1 deletion eng/scripts/update-changelog-content.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ try {
# Run the update-changelog command using npm exec
Write-Host "Updating CHANGELOG.md..." -ForegroundColor Cyan
Write-Host ""
$command = "npm --prefix $releaseToolsPath exec --no -- update-changelog -- --sdkRepoPath `"$SdkRepoPath`" --packagePath `"$PackagePath`""
$command = "npm --prefix $releaseToolsPath exec update-changelog -- --sdkRepoPath `"$SdkRepoPath`" --packagePath `"$PackagePath`""
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is the impact for this argument? why I didn't meet any issue during my local verification?

Invoke-LoggedCommand $command

Write-Host ""
Expand Down
2 changes: 1 addition & 1 deletion eng/scripts/update-version.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ try {
# Run the update-version command using npm exec
Write-Host "Updating package version..." -ForegroundColor Cyan
Write-Host ""
$command = "npm --prefix $releaseToolsPath exec --no -- update-version -- $cmdArgs"
$command = "npm --prefix $releaseToolsPath exec update-version -- $cmdArgs"
Invoke-LoggedCommand $command

Write-Host ""
Expand Down