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:
parent
3c041a9a84
commit
3cc2a39d0a
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user