From 3cc2a39d0a662fa586c47381daebb306cd0fbc24 Mon Sep 17 00:00:00 2001 From: Lauri Nevala Date: Tue, 1 Dec 2020 16:44:05 +0200 Subject: [PATCH] Add missing semicolon Signed-off-by: Lauri Nevala --- src/common/utils/tar.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;