Skip to content

Commit 4cca665

Browse files
author
Ignacio Calderon
committed
Removed the customFramework check on the correctPath, since it's better to use the filepath instead. Xcode can navigate the location of the framework for inspection of the files.
1 parent d08b53c commit 4cca665

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

lib/pbxFile.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,6 @@ function correctPath(file, filepath) {
5454
return 'System/Library/Frameworks/' + filepath;
5555
} else if (file.lastType == DYLIB) {
5656
return 'usr/lib/' + filepath;
57-
} else if (file.customFramework == true) {
58-
return file.basename;
5957
} else {
6058
return filepath;
6159
}

0 commit comments

Comments
 (0)