File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed
crates/tauri-cli/src/mobile/ios Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " tauri-cli " : patch:bug
3
+ " @tauri-apps/cli " : patch:bug
4
+ ---
5
+
6
+ Only modify the iOS Xcode project "sign style" if we need to enforce manual signing.
Original file line number Diff line number Diff line change @@ -447,15 +447,9 @@ pub fn synchronize_project_config(
447
447
. find ( |l| l. comment . contains ( "_iOS" ) )
448
448
{
449
449
for build_configuration_ref in xc_configuration_list. build_configurations {
450
- pbxproj. set_build_settings (
451
- & build_configuration_ref. id ,
452
- "CODE_SIGN_STYLE" ,
453
- if manual_signing {
454
- "Manual"
455
- } else {
456
- "Automatic"
457
- } ,
458
- ) ;
450
+ if manual_signing {
451
+ pbxproj. set_build_settings ( & build_configuration_ref. id , "CODE_SIGN_STYLE" , "Manual" ) ;
452
+ }
459
453
460
454
if let Some ( team) = config. development_team ( ) {
461
455
pbxproj. set_build_settings ( & build_configuration_ref. id , "DEVELOPMENT_TEAM" , team) ;
You can’t perform that action at this time.
0 commit comments