From d29f7990ec82541548d1f5790c96b8e4464eaff7 Mon Sep 17 00:00:00 2001 From: HaveAGitGat <43864057+HaveAGitGat@users.noreply.github.com> Date: Wed, 22 May 2024 13:04:30 +0100 Subject: [PATCH 1/2] Fix error message with cliPath --- FlowPluginsTs/CommunityFlowPlugins/tools/runCli/1.0.0/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FlowPluginsTs/CommunityFlowPlugins/tools/runCli/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/tools/runCli/1.0.0/index.ts index f29093e..b06893a 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/tools/runCli/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/tools/runCli/1.0.0/index.ts @@ -256,7 +256,7 @@ const plugin = async (args: IpluginInputArgs): Promise => { const res = await cli.runCli(); if (res.cliExitCode !== 0) { - const msg = `Running ${userCli} failed`; + const msg = `Running ${cliPath} failed`; args.jobLog(msg); throw new Error(msg); } From 6822270cac3f352f9999c49790b8787f5751a3b4 Mon Sep 17 00:00:00 2001 From: HaveAGitGat Date: Wed, 22 May 2024 12:06:37 +0000 Subject: [PATCH 2/2] Apply auto-build changes --- FlowPlugins/CommunityFlowPlugins/tools/runCli/1.0.0/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FlowPlugins/CommunityFlowPlugins/tools/runCli/1.0.0/index.js b/FlowPlugins/CommunityFlowPlugins/tools/runCli/1.0.0/index.js index e9f1e9f..ffbc93c 100644 --- a/FlowPlugins/CommunityFlowPlugins/tools/runCli/1.0.0/index.js +++ b/FlowPlugins/CommunityFlowPlugins/tools/runCli/1.0.0/index.js @@ -267,7 +267,7 @@ var plugin = function (args) { return __awaiter(void 0, void 0, void 0, function case 1: res = _a.sent(); if (res.cliExitCode !== 0) { - msg = "Running ".concat(userCli, " failed"); + msg = "Running ".concat(cliPath, " failed"); args.jobLog(msg); throw new Error(msg); }