16 lines
357 B
JavaScript
16 lines
357 B
JavaScript
|
const path = require('path');
|
||
|
const getBuildProperty = require('./getBuildProperty');
|
||
|
|
||
|
module.exports = function getPlistPath(project, sourceDir) {
|
||
|
const plistFile = getBuildProperty(project, 'INFOPLIST_FILE');
|
||
|
|
||
|
if (!plistFile) {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
return path.join(
|
||
|
sourceDir,
|
||
|
plistFile.replace(/"/g, '').replace('$(SRCROOT)', '')
|
||
|
);
|
||
|
};
|