From 1ef989ee9bcc8bde0a9c18e0b32caac45eb287ac Mon Sep 17 00:00:00 2001 From: Rhys Koedijk Date: Mon, 18 Nov 2024 20:07:22 +1300 Subject: [PATCH] Merge fixes --- .../utils/dependabot-cli/DependabotOutputProcessor.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extension/tasks/dependabotV2/utils/dependabot-cli/DependabotOutputProcessor.ts b/extension/tasks/dependabotV2/utils/dependabot-cli/DependabotOutputProcessor.ts index 4f70e9e3..774a9895 100644 --- a/extension/tasks/dependabotV2/utils/dependabot-cli/DependabotOutputProcessor.ts +++ b/extension/tasks/dependabotV2/utils/dependabot-cli/DependabotOutputProcessor.ts @@ -211,7 +211,7 @@ export class DependabotOutputProcessor implements IDependabotUpdateOutputProcess const pullRequestToUpdate = this.getPullRequestForDependencyNames(packageManager, data['dependency-names']); if (!pullRequestToUpdate) { error( - `Could not find pull request to update for package manager '${packageManager}' and dependencies '${data['dependency-names'].join(', ')}'`, + `Could not find pull request to update for package manager '${packageManager}' with dependencies '${data['dependency-names'].join(', ')}'`, ); return false; } @@ -254,7 +254,7 @@ export class DependabotOutputProcessor implements IDependabotUpdateOutputProcess const pullRequestToClose = this.getPullRequestForDependencyNames(packageManager, data['dependency-names']); if (!pullRequestToClose) { error( - `Could not find pull request to close for package manager '${packageManager}' and dependencies '${data['dependency-names'].join(', ')}'`, + `Could not find pull request to close for package manager '${packageManager}' with dependencies '${data['dependency-names'].join(', ')}'`, ); return false; }