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