Skip to content

Commit

Permalink
Return all dependencies during check-update (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
misscoded authored Aug 18, 2022
1 parent fa6fbbd commit 6d8f01e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/check_update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ export function createUpdateResp(
// Output information for each dependency
for (const sdk of Object.values(versionMap)) {
// Dependency has an update OR the fetch of update failed
if (sdk && (sdk.update || sdk.error?.message)) {
if (sdk) {
releases.push(sdk);

// Add the dependency that failed to be fetched to the top-level error message
Expand Down

0 comments on commit 6d8f01e

Please sign in to comment.