mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-01 10:01:07 +02:00
fix(cli.rs/build): fix typo getting bundle arg (#1783)
This commit is contained in:
5
.changes/fix-cli.rs-bundle-arg.md
Normal file
5
.changes/fix-cli.rs-bundle-arg.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
"cli.rs": minor
|
||||
---
|
||||
|
||||
Fix a typo that would result in bundle arg being ignored.
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user