From d15ef33a86e2cf471f8907686aefc12adeeb7204 Mon Sep 17 00:00:00 2001 From: Chubby Granny Chaser Date: Tue, 1 Apr 2025 23:42:24 +0100 Subject: [PATCH] fix: fixing translation --- src/main/services/7zip.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/services/7zip.ts b/src/main/services/7zip.ts index f48eec4b..e997032f 100644 --- a/src/main/services/7zip.ts +++ b/src/main/services/7zip.ts @@ -27,7 +27,7 @@ export class _7Zip { const child = cp.spawn(this.binaryPath, [ "x", filePath, - "-o" + outputPath, + `-o"${outputPath}"`, "-y", ]);