pull/531/head
Frostebite 2024-01-07 20:27:21 +00:00
parent f5ba54041b
commit 0d70b4d6fa
3 changed files with 3 additions and 3 deletions

2
dist/index.js generated vendored
View File

@ -4877,7 +4877,7 @@ class CloudRunnerSystem {
}
return await new Promise((promise, throwError) => {
let output = '';
const child = (0, child_process_1.exec)(command, { maxBuffer: 1024 * 1500 }, (error, stdout, stderr) => {
const child = (0, child_process_1.exec)(command, { maxBuffer: 1024 * 10000 }, (error, stdout, stderr) => {
if (!suppressError && error) {
remote_client_logger_1.RemoteClientLogger.log(error.toString());
throwError(error);

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@ -31,7 +31,7 @@ export class CloudRunnerSystem {
return await new Promise<string>((promise, throwError) => {
let output = '';
const child = exec(command, { maxBuffer: 1024 * 1500 }, (error, stdout, stderr) => {
const child = exec(command, { maxBuffer: 1024 * 10000 }, (error, stdout, stderr) => {
if (!suppressError && error) {
RemoteClientLogger.log(error.toString());
throwError(error);