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

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

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)