Skip to content

Commit

Permalink
debug: fix reduceSites
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmcguin committed Aug 22, 2024
1 parent 3b0f190 commit 0fe76c7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scripts/build_matrix.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,7 @@ function deploy(sites) {
function reduceSites(allSites, sitesChanged) {
return Object.entries(allSites).reduce((accum, [pkg, project]) => {
if (sitesChanged.includes(pkg)) {
accum["package"] = pkg;
accum["project"] = project;
accum[pkg] = project;
}
return accum;
}, {});
Expand Down

0 comments on commit 0fe76c7

Please sign in to comment.