File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
packages/angular_devkit/architect_cli/bin Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -89,13 +89,12 @@ async function _executeTarget(
89
89
const targetSpec = { project, target, configuration };
90
90
91
91
delete argv['help'];
92
- argv['_'] = [];
93
-
94
92
const logger = new logging.Logger('jobs');
95
93
const logs: logging.LogEntry[] = [];
96
94
logger.subscribe(entry => logs.push({ ...entry, message: ` $ { entry . name } : ` + entry.message }));
97
95
98
- const run = await architect.scheduleTarget(targetSpec, argv, { logger });
96
+ const { _, ...options } = argv;
97
+ const run = await architect.scheduleTarget(targetSpec, options, { logger });
99
98
const bars = new MultiProgressBar<number, BarInfo>(':name :bar (:current/:total) :status');
100
99
101
100
run.progress.subscribe(update => {
You can’t perform that action at this time.
0 commit comments