File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments