diff --git a/src/effektManager.ts b/src/effektManager.ts index a165bcb..8ae58f9 100644 --- a/src/effektManager.ts +++ b/src/effektManager.ts @@ -88,7 +88,7 @@ export class EffektManager { */ private async execCommand(command: string, resolveWithStderr?: boolean): Promise { return new Promise((resolve, reject) => { - cp.exec(command, (error, stdout, stderr) => { + cp.exec(command, { encoding: 'utf8', maxBuffer: 1024 * 1024 }, (error, stdout, stderr) => { if (error) { reject(error); } else {