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 @@ -84,13 +84,12 @@ async function _executeTarget(
84
84
const targetSpec = { project, target, configuration };
85
85
86
86
delete argv['help'];
87
- argv['_'] = [];
88
-
89
87
const logger = new logging.Logger('jobs');
90
88
const logs: logging.LogEntry[] = [];
91
89
logger.subscribe(entry => logs.push({ ...entry, message: ` $ { entry . name } : ` + entry.message }));
92
90
93
- const run = await architect.scheduleTarget(targetSpec, argv, { logger });
91
+ const { _, ...options } = argv;
92
+ const run = await architect.scheduleTarget(targetSpec, options, { logger });
94
93
const bars = new MultiProgressBar<number, BarInfo>(':name :bar (:current/:total) :status');
95
94
96
95
run.progress.subscribe(update => {
You can’t perform that action at this time.
0 commit comments