We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e50f17a commit 81af12aCopy full SHA for 81af12a
cli/src/ios/build.ts
@@ -1,5 +1,5 @@
1
import { writeFileSync, unlinkSync } from '@ionic/utils-fs';
2
-import { join } from 'path';
+import { basename, join } from 'path';
3
import rimraf from 'rimraf';
4
5
import { runTask } from '../common';
@@ -19,7 +19,7 @@ export async function buildiOS(
19
'xcodebuild',
20
[
21
'-workspace',
22
- `${theScheme}.xcworkspace`,
+ basename(await config.ios.nativeXcodeWorkspaceDirAbs),
23
'-scheme',
24
`${theScheme}`,
25
'-destination',
0 commit comments