1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Add missing semicolon

Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com>
This commit is contained in:
Lauri Nevala 2020-12-01 16:44:05 +02:00
parent 3c041a9a84
commit 3cc2a39d0a

View File

@ -42,7 +42,7 @@ export async function listTarEntries(filePath: string): Promise<string[]> {
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;