Skip to content

Commit

Permalink
Use destructuring
Browse files Browse the repository at this point in the history
  • Loading branch information
HaveAGitGat committed May 21, 2024
1 parent 58dc01b commit 4ce7fab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ const plugin = async (args: IpluginInputArgs): Promise<IpluginOutputArgs> => {
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 = '';

Expand Down

0 comments on commit 4ce7fab

Please sign in to comment.