🗑 Remove unneeded code

This commit is contained in:
C-3PO 2018-08-09 17:17:31 +02:00
parent 6a4c73ba7f
commit e22c27aa31
Signed by: c3po
GPG key ID: 62993C4BB4D86F24

View file

@ -17,7 +17,6 @@ export default function launchProcess(diskFile: string, offset: number, compress
const spawnedProcess = childProcess.spawn(processPath, parameters.map((value) => value.toString(), { cwd: '.' }));
spawnedProcess.stdout.pipe(outputStream);
//spawnedProcess.stdout.on('data', console.log);
spawnedProcess.stdout.on('end', resolve);
spawnedProcess.stderr.setEncoding('utf8');