diff --git a/src/ssn/patcher-installer/launch.ts b/src/ssn/patcher-installer/launch.ts index 7eee7d0..7e04207 100644 --- a/src/ssn/patcher-installer/launch.ts +++ b/src/ssn/patcher-installer/launch.ts @@ -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');