Skip to content

Commit

Permalink
Fixing missed XcodeExportMethod.Debugging default
Browse files Browse the repository at this point in the history
  • Loading branch information
theproducer committed Feb 4, 2025
1 parent 6e136de commit 1c3711d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli/src/declarations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ export interface CapacitorConfig {
* The method used by xcodebuild to export the archive
*
* @since 7.0.0
* @default 'debugging'
* @default 'app-store-connect'
*/
exportMethod?: string;
/**
Expand Down
2 changes: 1 addition & 1 deletion cli/src/ios/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export async function buildiOS(config: Config, buildOptions: BuildCommandOptions
<plist version="1.0">
<dict>
<key>method</key>
<string>${buildOptions.xcodeExportMethod ?? XcodeExportMethod.Debugging}</string>
<string>${buildOptions.xcodeExportMethod ?? XcodeExportMethod.AppStoreConnect}</string>
<key>signingStyle</key>
<string>${buildOptions.xcodeSigningType}</string>
${buildOptions.xcodeSigningType == 'manual' ? manualSigningContents : ''}
Expand Down

0 comments on commit 1c3711d

Please sign in to comment.