Skip to content

Commit

Permalink
fix(cli.rs/build): fix typo getting bundle arg (#1783)
Browse files Browse the repository at this point in the history
  • Loading branch information
nklayman committed May 12, 2021
1 parent d03c98b commit 71f6a5e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changes/fix-cli.rs-bundle-arg.md
@@ -0,0 +1,5 @@
---
"cli.rs": minor
---

Fix a typo that would result in bundle arg being ignored.
2 changes: 1 addition & 1 deletion tooling/cli.rs/src/main.rs
Expand Up @@ -119,7 +119,7 @@ fn build_command(matches: &ArgMatches) -> Result<()> {
let target = matches.value_of("target");
let debug = matches.is_present("debug");
let verbose = matches.is_present("verbose");
let bundles = matches.values_of_lossy("bundles");
let bundles = matches.values_of_lossy("bundle");
let config = matches.value_of("config");

let mut build_runner = build::Build::new();
Expand Down

0 comments on commit 71f6a5e

Please sign in to comment.