From df2e13ac672782b1836c212b998fbc85fed1fbc5 Mon Sep 17 00:00:00 2001 From: kimkim0814 Date: Wed, 13 Sep 2023 18:49:05 +0900 Subject: [PATCH] Fix public command --- src/commands/publish.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/publish.ts b/src/commands/publish.ts index 2b0e9fa..832a01c 100644 --- a/src/commands/publish.ts +++ b/src/commands/publish.ts @@ -105,7 +105,7 @@ export const publish = async (argv: string[]) => { organizationUrlName: item.organizationUrlName, slide: item.slide, }); - fileSystemRepo.updateItemUuid(item.name, responseItem.id); + await fileSystemRepo.updateItemUuid(item.name, responseItem.id); console.log(`Posted: ${item.name} -> ${responseItem.id}`); }