Skip to content

Commit

Permalink
fix(cli): run an actual debug build for iOS (#4014)
Browse files Browse the repository at this point in the history
  • Loading branch information
imhoffd committed Jan 5, 2021
1 parent c7f80b5 commit dc6399c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/src/ios/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export async function runIOS(
'-scheme',
'App',
'-configuration',
'debug',
'Debug',
'-destination',
`id=${target.id}`,
'-derivedDataPath',
Expand All @@ -50,7 +50,7 @@ export async function runIOS(
const appPath = resolve(
derivedDataPath,
'Build/Products',
target.virtual ? 'Release-iphonesimulator' : 'Release-iphoneos',
target.virtual ? 'Debug-iphonesimulator' : 'Debug-iphoneos',
appName,
);

Expand Down

0 comments on commit dc6399c

Please sign in to comment.