This commit is contained in:
Frostebite 2024-01-07 20:04:36 +00:00
parent c262c929e4
commit f5ba54041b
3 changed files with 1 additions and 1 deletions

BIN
dist/index.js generated vendored

Binary file not shown.

BIN
dist/index.js.map generated vendored

Binary file not shown.

View File

@ -31,7 +31,7 @@ export class CloudRunnerSystem {
return await new Promise<string>((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);