Skip to content

Commit dc4077c

Browse files
add await
1 parent 46a46e8 commit dc4077c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tasks/buildAndUpload.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ as ${releaseFilesDefaultNames.avatar} and then remove the 'manifest.avatar' prop
177177

178178
{
179179
title: "Validate files",
180-
task: () => {
180+
task: async () => {
181181
for (const [fileId] of Object.entries(releaseFiles)) {
182182
switch (fileId as keyof typeof releaseFiles) {
183183
case "setupWizard":
@@ -188,7 +188,7 @@ as ${releaseFilesDefaultNames.avatar} and then remove the 'manifest.avatar' prop
188188
break;
189189
case "compose":
190190
// validate against official docker compose schema.
191-
validateComposeSchema(path.join(dir, composeFileName));
191+
await validateComposeSchema(path.join(dir, composeFileName));
192192

193193
// validate against custom dappnode requirements
194194
validateDappnodeCompose(composeForDev, manifest);

0 commit comments

Comments
 (0)