Skip to content

Commit

Permalink
Increase maxBuffer for installApp command
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethan Goldblum committed Mar 3, 2014
1 parent d887a20 commit acc56fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/devices/common.js
Expand Up @@ -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 {
Expand Down

0 comments on commit acc56fd

Please sign in to comment.