From f4bde31894c89a4be24ecd15b9aa1b97a882419a Mon Sep 17 00:00:00 2001 From: satackey <21271711+satackey@users.noreply.github.com> Date: Tue, 16 Jun 2020 21:26:47 +0900 Subject: [PATCH] await --- post.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post.ts b/post.ts index 4a5118df..32803e7b 100644 --- a/post.ts +++ b/post.ts @@ -15,7 +15,7 @@ const main = async () => { const imageDetector = new ImageDetector() imageDetector.registerAlreadyExistedImages(alreadyExistingImages) - imageDetector.getExistingImages() + await imageDetector.getExistingImages() core.debug(JSON.stringify({ imageIdsToSave: imageDetector.getImagesShouldSave() })) const layerCache = new LayerCache(imageDetector.getImagesShouldSave())