fix(cli): use correct variable on script to build Rust iOS code (#6581)

This commit is contained in:
Lucas Fernandes Nogueira
2023-03-29 11:35:18 -03:00
committed by GitHub
parent 332b3fc419
commit 6e3e4c22be
2 changed files with 7 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
---
"cli.rs": patch
"cli.js": patch
---
Fixes the iOS project script to build the Rust library.

View File

@@ -159,6 +159,7 @@ pub fn exec(
);
}
map.insert("tauri-binary", binary.to_string_lossy());
map.insert("tauri-binary-args", &build_args);
map.insert("tauri-binary-args-str", build_args.join(" "));