Skip to content

Commit 0118a7e

Browse files
author
Michael Hladky
committed
refactor: wip
1 parent e74275b commit 0118a7e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/nx-plugin/src/executors/cli/executor.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ export default async function runCliExecutor(
3131

3232
const command = bin ? `node` : 'npx';
3333
const args = [
34-
...[bin ?? '@code-pushup/cli', ...(cliCommand ? [cliCommand] : [])],
34+
bin ?? '@code-pushup/cli',
35+
...(cliCommand ? [cliCommand] : []),
3536
...objectToCliArgs(restArgs),
3637
];
3738
const commandString = formatCommandStatus([command, ...args].join(' '), {

0 commit comments

Comments
 (0)