Skip to content

Commit 71f6a5e

Browse files
authored
fix(cli.rs/build): fix typo getting bundle arg (#1783)
1 parent d03c98b commit 71f6a5e

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

.changes/fix-cli.rs-bundle-arg.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"cli.rs": minor
3+
---
4+
5+
Fix a typo that would result in bundle arg being ignored.

tooling/cli.rs/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ fn build_command(matches: &ArgMatches) -> Result<()> {
119119
let target = matches.value_of("target");
120120
let debug = matches.is_present("debug");
121121
let verbose = matches.is_present("verbose");
122-
let bundles = matches.values_of_lossy("bundles");
122+
let bundles = matches.values_of_lossy("bundle");
123123
let config = matches.value_of("config");
124124

125125
let mut build_runner = build::Build::new();

0 commit comments

Comments
 (0)