From 4ce7fabddd50c742b691c7571b2635b3e878bea6 Mon Sep 17 00:00:00 2001 From: HaveAGitGat <43864057+HaveAGitGat@users.noreply.github.com> Date: Tue, 21 May 2024 12:27:59 +0100 Subject: [PATCH] Use destructuring --- 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 0495ddfc7..f29093e48 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/tools/runCli/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/tools/runCli/1.0.0/index.ts @@ -192,7 +192,7 @@ const plugin = async (args: IpluginInputArgs): Promise => { args.inputs = lib.loadDefaultValues(args.inputs, details); const userCli = String(args.inputs.userCli); - const useCustomCliPath = args.inputs.useCustomCliPath; + const { useCustomCliPath } = args.inputs; const customCliPath = String(args.inputs.customCliPath); let cliPath = '';