Description
xCode 12 is escaping equal signs in the build output that is parsed here, this regex will not match the new format:
|
const productNameMatch = /export FULL_PRODUCT_NAME="?(.+).app"?$/m.exec( |
Example of the relevant line in xCode 12 build output:
export FULL_PRODUCT_NAME\=AppName.app
Current Regex: /export FULL_PRODUCT_NAME="?(.+).app"?$/m
Working Regex: /export FULL_PRODUCT_NAME\\?="?(.+).app"?$/m
Description
xCode 12 is escaping equal signs in the build output that is parsed here, this regex will not match the new format:
cli/packages/platform-ios/src/commands/runIOS/index.ts
Line 444 in 7238b20
Example of the relevant line in xCode 12 build output:
Current Regex:
/export FULL_PRODUCT_NAME="?(.+).app"?$/mWorking Regex:
/export FULL_PRODUCT_NAME\\?="?(.+).app"?$/m