azdo-cli 0.5.0-029-pr-comment-reply.521 → 0.5.0-029-pr-comment-reply.523

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +2 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -3229,7 +3229,8 @@ function autoDetectZeroMatch(branch) {
3229
3229
  return `No open pull request matches branch ${branch}. Pass --pr-number to target a specific PR, or push the branch and open a pull request.`;
3230
3230
  }
3231
3231
  function autoDetectMultiMatch(branch, ids) {
3232
- return `Multiple open pull requests match branch ${branch}: ${ids.map((id) => `#${id}`).join(", ")}. Re-run with --pr-number to choose.`;
3232
+ const prList = ids.map((id) => `#${id}`).join(", ");
3233
+ return `Multiple open pull requests match branch ${branch}: ${prList}. Re-run with --pr-number to choose.`;
3233
3234
  }
3234
3235
  function writeContractError(line) {
3235
3236
  process.stderr.write(`${line}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "azdo-cli",
3
- "version": "0.5.0-029-pr-comment-reply.521",
3
+ "version": "0.5.0-029-pr-comment-reply.523",
4
4
  "description": "Azure DevOps CLI tool",
5
5
  "type": "module",
6
6
  "bin": {