Merge pull request #1983 from egoldblum/master

Increase maxBuffer for installApp command
This commit is contained in:
bootstraponline
2014-03-03 14:18:21 -05:00

View File

@@ -124,7 +124,7 @@ exports.removeApp = function (removeCommand, udid, bundleId, cb) {
exports.installApp = function (installationCommand, udid, unzippedAppPath, cb) {
logger.info("Installing app using cmd: " + installationCommand);
exec(installationCommand, function (error) {
exec(installationCommand, { maxBuffer: 524288 }, function (error) {
if (error !== null) {
cb(new Error('Unable to install [' + unzippedAppPath + '] to device with id [' + udid + ']. Error [' + error + ']'));
} else {