From 97bbbb8d4a10d5ce49fc6163d57cf0c2a65ac282 Mon Sep 17 00:00:00 2001 From: Danny Lin Date: Sat, 13 Nov 2021 18:02:28 -0800 Subject: [PATCH] check-presigned: Remove unnecessary await --- src/commands/check-presigned.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/check-presigned.ts b/src/commands/check-presigned.ts index a55ea72..1f27f17 100644 --- a/src/commands/check-presigned.ts +++ b/src/commands/check-presigned.ts @@ -37,7 +37,7 @@ export default class CheckPresigned extends Command { presignedEntries.forEach(e => this.log(e.srcPath)) if (outPath != undefined) { - let newList = await serializeBlobList(presignedEntries) + let newList = serializeBlobList(presignedEntries) await fs.writeFile(outPath, newList) } } else {