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 b6dca99 commit 9089d97Copy full SHA for 9089d97
.changes/fix-config-override.md
@@ -0,0 +1,6 @@
1
+---
2
+"tauri-cli": patch:bug
3
+"@tauri-apps/cli": patch:bug
4
5
+
6
+Fixes `[android|ios] build --config <config>` failing to resolve.
tooling/cli/src/mobile/ios/xcode_script.rs
@@ -95,6 +95,10 @@ pub fn command(options: Options) -> Result<()> {
95
MobileTarget::Ios,
96
)?;
97
98
+ if let Some(config) = &cli_options.config {
99
+ crate::helpers::config::merge_with(&config.0)?;
100
+ }
101
102
let env = env()?.explicit_env_vars(cli_options.vars);
103
104
if !options.sdk_root.is_dir() {
0 commit comments