diff --git a/FlowPlugins/CommunityFlowPlugins/tools/runCli/1.0.0/index.js b/FlowPlugins/CommunityFlowPlugins/tools/runCli/1.0.0/index.js index e9f1e9f5b..ffbc93ccb 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); } diff --git a/FlowPluginsTs/CommunityFlowPlugins/tools/runCli/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/tools/runCli/1.0.0/index.ts index f29093e48..b06893a39 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); }