diff --git a/src/common/utils/tar.ts b/src/common/utils/tar.ts index aaacec7856..bec7b5b3f2 100644 --- a/src/common/utils/tar.ts +++ b/src/common/utils/tar.ts @@ -42,7 +42,7 @@ export async function listTarEntries(filePath: string): Promise { await tar.list({ file: filePath, onentry: (entry: FileStat) => { - entries.push(path.normalize(entry.path as any as string)) + entries.push(path.normalize(entry.path as any as string)); }, }); return entries;