We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d03c98b commit 71f6a5eCopy full SHA for 71f6a5e
2 files changed
.changes/fix-cli.rs-bundle-arg.md
@@ -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
@@ -119,7 +119,7 @@ fn build_command(matches: &ArgMatches) -> Result<()> {
119
let target = matches.value_of("target");
120
let debug = matches.is_present("debug");
121
let verbose = matches.is_present("verbose");
122
- let bundles = matches.values_of_lossy("bundles");
+ let bundles = matches.values_of_lossy("bundle");
123
let config = matches.value_of("config");
124
125
let mut build_runner = build::Build::new();
0 commit comments