Skip to content

Commit

Permalink
Merge pull request #502 from olehermanse/allow
Browse files Browse the repository at this point in the history
GH Actions: Fixed TypeError when checking for dependencies
  • Loading branch information
olehermanse authored Jun 19, 2024
2 parents e49682f + a134238 commit b21dc20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/s3uploading.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ const processModules = async (modules, versions) => {
"by": module.by,
"repo": module.repo
};
if (module.dependencies.length){
if (module.dependencies?.length){
versions[moduleName][module.version].dependencies = module.dependencies
}

Expand Down

0 comments on commit b21dc20

Please sign in to comment.