fix(cli): set ios deployment target only when building for ios (#11063)

This commit is contained in:
Fabian-Lars 2024-09-20 12:31:51 +02:00 committed by GitHub
parent 40a45b564d
commit b88e22a5fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 14 additions and 4 deletions

View File

@ -0,0 +1,6 @@
---
'tauri-cli': 'patch:bug'
'@tauri-apps/cli': 'patch:bug'
---
The cli now only sets the iOS deployment target environment variable when building for iOS.

View File

@ -151,10 +151,14 @@ impl Interface for Rust {
std::env::set_var("MACOSX_DEPLOYMENT_TARGET", minimum_system_version);
}
std::env::set_var(
"IPHONEOS_DEPLOYMENT_TARGET",
&config.bundle.ios.minimum_system_version,
);
if let Some(target) = &target {
if target.ends_with("ios") || target.ends_with("ios-sim") {
std::env::set_var(
"IPHONEOS_DEPLOYMENT_TARGET",
&config.bundle.ios.minimum_system_version,
);
}
}
let app_settings = RustAppSettings::new(config, manifest, target)?;