Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pbxProject.js replace \ to / . create file will been incorrect on windows. #83

Open
wsh-justep opened this issue Apr 13, 2016 · 0 comments

Comments

@wsh-justep
Copy link

function searchPathForFile(file, proj) {
var plugins = proj.pbxGroupByName('Plugins'),
pluginsPath = plugins ? plugins.path : null,
fileDir = path.dirname(file.path);

if (fileDir == '.') {
    fileDir = '';
} else {
    fileDir = '/' + fileDir;
}

if (file.plugin && pluginsPath) {
    return '"\\"$(SRCROOT)/' + unquote(pluginsPath) + '\\""';
} else if (file.customFramework && file.dirname) {
    return '"\\"' + file.dirname + '\\""';
} else {
    return '"\\"$(SRCROOT)/' + proj.productName + fileDir + '\\""';
}

}

->

function searchPathForFile(file, proj) {
var plugins = proj.pbxGroupByName('Plugins'),
pluginsPath = plugins ? plugins.path : null,
fileDir = path.dirname(file.path);

if (fileDir == '.') {
    fileDir = '';
} else {
    fileDir = '/' + fileDir.replace(/\\/g, "/");
}

if (file.plugin && pluginsPath) {
    return '"\\"$(SRCROOT)/' + unquote(pluginsPath.replace(/\\/g, "/")) + '\\""';
} else if (file.customFramework && file.dirname) {
    return '"\\"' + file.dirname.replace(/\\/g, "/") + '\\""';
} else {
    return '"\\"$(SRCROOT)/' + proj.productName + fileDir + '\\""';
}

}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant