Skip to content

Commit

Permalink
Possible fix for build error.
Browse files Browse the repository at this point in the history
  • Loading branch information
ctslater committed Jun 22, 2024
1 parent 8ed790f commit 23e2684
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/summaries.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ async function _ListSummariesFilesystem(repoName) {

async function ListSummaries() {

const repos = process.env.REPOS.split(',')
const repos = process.env.REPOS ? process.env.REPOS.split(',') : []

if(process.env.BUCKET_NAME) {
const res = await Promise.all(repos.map(repo => _ListSummariesS3(repo)))
Expand Down

0 comments on commit 23e2684

Please sign in to comment.