Skip to content

Commit

Permalink
fix(cli): point build to proper workspace name (#6371)
Browse files Browse the repository at this point in the history
  • Loading branch information
markemer committed Mar 8, 2023
1 parent bb47f94 commit 78b7a59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/src/ios/build.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { writeFileSync, unlinkSync } from '@ionic/utils-fs';
import { join } from 'path';
import { basename, join } from 'path';
import rimraf from 'rimraf';

import { runTask } from '../common';
Expand All @@ -19,7 +19,7 @@ export async function buildiOS(
'xcodebuild',
[
'-workspace',
`${theScheme}.xcworkspace`,
basename(await config.ios.nativeXcodeWorkspaceDirAbs),
'-scheme',
`${theScheme}`,
'-destination',
Expand Down

0 comments on commit 78b7a59

Please sign in to comment.