Increase maxBuffer for installApp command

This commit is contained in:
Ethan Goldblum
2014-03-03 10:55:44 -08:00
parent d887a20349
commit acc56fd100

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 {