apache/cordova-node-xcode

Add input files or input file lists for PBXShellScriptBuildPhase

almightybruce opened this issue · 1 comments

I would like to be able to add files to the Input Files, Input File Lists, Output Files, Output File Lists when adding a PBXShellScriptBuildPhase.

found it here:

function pbxShellScriptBuildPhaseObj(obj, options, phaseName) {
    obj.name = '"' + phaseName + '"';
    obj.inputPaths = options.inputPaths || [];
    obj.outputPaths = options.outputPaths || [];
    obj.shellPath = options.shellPath;
    obj.shellScript = '"' + options.shellScript.replace(/"/g, '\\"') + '"';

    return obj;
}

thanks for a great package!