mirror of
https://github.com/appium/appium.git
synced 2026-02-11 12:29:48 -06:00
Increase maxBuffer for installApp command
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user