function runCommand()

in lib/appium/AppiumRunner.js [384:394]


function runCommand (command, appPath) {
    if (appPath) {
        shell.pushd(appPath);
    }

    exec(command);

    if (appPath) {
        shell.popd();
    }
}