File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ var path = require('path'),
55 BUNDLE_EXTENSION = / [ . ] b u n d l e $ / , BUNDLE = '"wrapper.plug-in"' ,
66 XIB_EXTENSION = / [ . ] x i b $ / , XIB_FILE = 'file.xib' ,
77 DYLIB_EXTENSION = / [ . ] d y l i b $ / , DYLIB = '"compiled.mach-o.dylib"' ,
8- FRAMEWORK_EXTENSION = / [ . ] f r a m e w o r k / , FRAMEWORK = 'wrapper.framework' ,
8+ FRAMEWORK_EXTENSION = / [ . ] f r a m e w o r k $ / , FRAMEWORK = 'wrapper.framework' ,
99 ARCHIVE_EXTENSION = / [ . ] a $ / , ARCHIVE = 'archive.ar' ,
1010 DEFAULT_SOURCE_TREE = '"<group>"' ,
1111 DEFAULT_FILE_ENCODING = 4 ;
Original file line number Diff line number Diff line change @@ -43,6 +43,13 @@ exports['lastType'] = {
4343 test . done ( ) ;
4444 } ,
4545
46+ 'should detect that a .framework/.a path means archive.ar' : function ( test ) {
47+ var sourceFile = new pbxFile ( 'MessageUI.framework/libGoogleAnalytics.a' ) ;
48+
49+ test . equal ( 'archive.ar' , sourceFile . lastType ) ;
50+ test . done ( ) ;
51+ } ,
52+
4653 'should detect that a .a path means archive.ar' : function ( test ) {
4754 var sourceFile = new pbxFile ( 'libGoogleAnalytics.a' ) ;
4855
You can’t perform that action at this time.
0 commit comments