reduced column widths

This commit is contained in:
Dan Motzenbecker 2015-10-04 19:44:22 -04:00
parent 415d31ae57
commit 2a9fa79ad2
1 changed files with 7 additions and 2 deletions

View File

@ -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