Skip to content

Commit 05f52d9

Browse files
exclude projects inside DerivedData directory
1 parent d5c5978 commit 05f52d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/xcode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export async function GetProjectDetails(credential: AppleCredential, xcodeVersio
4444
const excludedProjects = ['GameAssembly', 'UnityFramework', 'Pods'];
4545

4646
for (const file of files) {
47-
if (file.endsWith('.xcodeproj')) {
47+
if (file.endsWith('.xcodeproj') && !file.includes('DerivedData')) {
4848
const projectBaseName = path.basename(file, '.xcodeproj');
4949
if (excludedProjects.includes(projectBaseName)) {
5050
continue;

0 commit comments

Comments
 (0)