diff --git a/dist/index.js b/dist/index.js index 4bffd652..4fb8046e 100644 Binary files a/dist/index.js and b/dist/index.js differ diff --git a/dist/index.js.map b/dist/index.js.map index e6aa6f7e..2ab9554f 100644 Binary files a/dist/index.js.map and b/dist/index.js.map differ diff --git a/src/model/cloud-runner/services/core/cloud-runner-system.ts b/src/model/cloud-runner/services/core/cloud-runner-system.ts index 37047592..6818628a 100644 --- a/src/model/cloud-runner/services/core/cloud-runner-system.ts +++ b/src/model/cloud-runner/services/core/cloud-runner-system.ts @@ -31,7 +31,7 @@ export class CloudRunnerSystem { return await new Promise((promise, throwError) => { let output = ''; - const child = exec(command, { maxBuffer: 1024 * 500 }, (error, stdout, stderr) => { + const child = exec(command, { maxBuffer: 1024 * 1500 }, (error, stdout, stderr) => { if (!suppressError && error) { RemoteClientLogger.log(error.toString()); throwError(error);