diff --git a/dist/index.js b/dist/index.js index 2f22f8e3..757616dc 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 3f0b11ae..0508675a 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 79a528e5..97cdfc49 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 * 10000 }, (error, stdout, stderr) => { + const child = exec(command, (error, stdout, stderr) => { if (!suppressError && error) { RemoteClientLogger.log(error.toString()); throwError(error);