We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e74275b commit 0118a7eCopy full SHA for 0118a7e
packages/nx-plugin/src/executors/cli/executor.ts
@@ -31,7 +31,8 @@ export default async function runCliExecutor(
31
32
const command = bin ? `node` : 'npx';
33
const args = [
34
- ...[bin ?? '@code-pushup/cli', ...(cliCommand ? [cliCommand] : [])],
+ bin ?? '@code-pushup/cli',
35
+ ...(cliCommand ? [cliCommand] : []),
36
...objectToCliArgs(restArgs),
37
];
38
const commandString = formatCommandStatus([command, ...args].join(' '), {
0 commit comments