check-presigned: Remove unnecessary await
This commit is contained in:
parent
f532ea6707
commit
97bbbb8d4a
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue