We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
_
1 parent 64f340d commit c6aeb60Copy full SHA for c6aeb60
packages/angular_devkit/architect_cli/bin/architect.ts
@@ -89,13 +89,12 @@ async function _executeTarget(
89
const targetSpec = { project, target, configuration };
90
91
delete argv['help'];
92
- argv['_'] = [];
93
-
94
const logger = new logging.Logger('jobs');
95
const logs: logging.LogEntry[] = [];
96
logger.subscribe(entry => logs.push({ ...entry, message: `${entry.name}: ` + entry.message }));
97
98
- const run = await architect.scheduleTarget(targetSpec, argv, { logger });
+ const { _, ...options } = argv;
+ const run = await architect.scheduleTarget(targetSpec, options, { logger });
99
const bars = new MultiProgressBar<number, BarInfo>(':name :bar (:current/:total) :status');
100
101
run.progress.subscribe(update => {
0 commit comments