reduced column widths
This commit is contained in:
parent
415d31ae57
commit
2a9fa79ad2
|
@ -81,9 +81,14 @@ readConfig = ->
|
||||||
|
|
||||||
getBundleId = (name) ->
|
getBundleId = (name) ->
|
||||||
try
|
try
|
||||||
if line = readFile("native/ios/#{name}.xcodeproj/project.pbxproj").match /PRODUCT_BUNDLE_IDENTIFIER = (.+);/
|
if line = readFile "native/ios/#{name}.xcodeproj/project.pbxproj"
|
||||||
|
.match /PRODUCT_BUNDLE_IDENTIFIER = (.+);/
|
||||||
|
|
||||||
line[1]
|
line[1]
|
||||||
else if line = readFile("native/ios/#{name}/Info.plist").match /\<key\>CFBundleIdentifier\<\/key\>\n?\s*\<string\>(.+)\<\/string\>/
|
|
||||||
|
else if line = readFile "native/ios/#{name}/Info.plist"
|
||||||
|
.match /\<key\>CFBundleIdentifier\<\/key\>\n?\s*\<string\>(.+)\<\/string\>/
|
||||||
|
|
||||||
rfcIdRx = /\$\(PRODUCT_NAME\:rfc1034identifier\)/
|
rfcIdRx = /\$\(PRODUCT_NAME\:rfc1034identifier\)/
|
||||||
|
|
||||||
if line[1].match rfcIdRx
|
if line[1].match rfcIdRx
|
||||||
|
|
Loading…
Reference in New Issue