From 1fb738505e030fd2b3e8a622bb251016fb6ace7e Mon Sep 17 00:00:00 2001 From: C-3PO Date: Fri, 14 Sep 2018 01:52:26 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Supply=20decryption=20keys=20as?= =?UTF-8?q?=20comma-delimited=20string=20and=20not=20as=20three=20args?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ssn/patcher-installer/launch.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ssn/patcher-installer/launch.ts b/src/ssn/patcher-installer/launch.ts index acad2bb..a6db94e 100644 --- a/src/ssn/patcher-installer/launch.ts +++ b/src/ssn/patcher-installer/launch.ts @@ -12,7 +12,7 @@ export default function launchProcess(diskFile: string, offset: number, compress '--size', compressedSize, ]; if (decryptionKeys !== undefined) { - parameters.push('--keys', ...decryptionKeys); + parameters.push('--keys', decryptionKeys.join(',')); } const spawnedProcess = childProcess.spawn(processPath, parameters.map((value) => value.toString(), { cwd: '.' }));