fix(cli.rs/build): fix typo getting bundle arg (#1783)

This commit is contained in:
Noah Klayman
2021-05-12 05:32:31 -07:00
committed by GitHub
parent d03c98b0e6
commit 71f6a5ed44
2 changed files with 6 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
---
"cli.rs": minor
---
Fix a typo that would result in bundle arg being ignored.

View File

@@ -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();