This commit is contained in:
Philipinho
2025-05-28 19:36:24 -07:00
parent 003b8f5515
commit 8143452a21

View File

@ -35,15 +35,11 @@ export function getFileTaskFolderPath(
/**
* Extracts a ZIP archive.
*/
export async function extractZip(source: string, target: string): Promise<void> {
const logFinal = createMemoryTracker();
try {
await extractZipInternal(source, target, true);
logFinal('end');
} catch (err) {
logFinal('error');
throw err;
}
export async function extractZip(
source: string,
target: string,
): Promise<void> {
await extractZipInternal(source, target, true);
}
/**