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 6c48309 commit d400fa0Copy full SHA for d400fa0
packages/nx-plugin/src/executors/cli/executor.ts
@@ -19,7 +19,6 @@ export default async function runAutorunExecutor(
19
dryRun,
20
verbose,
21
command: cliCommand,
22
- env: targetEnv,
23
bin,
24
...argsObj
25
} = terminalAndExecutorOptions;
@@ -30,7 +29,6 @@ export default async function runAutorunExecutor(
30
29
];
31
const args = objectToCliArgs(argsObj);
32
const executorEnvVariables = {
33
- ...targetEnv,
34
...(verbose && { CP_VERBOSE: 'true' }),
35
};
36
const binString = `${command} ${positionals.join(' ')} ${args.join(' ')}`;
0 commit comments