Skip to content

Commit 6ec5f3e

Browse files
committed
fix: correct check7zipStatus logic in decompress function
1 parent f4df97c commit 6ec5f3e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

daemon/src/common/compress.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export async function decompress(
7070
}
7171
};
7272

73-
if (!await check7zipStatus()) {
73+
if (await check7zipStatus()) {
7474
try {
7575
return await use7zip(zipPath, dest);
7676
} catch (error) {

0 commit comments

Comments
 (0)