Skip to content

Commit

Permalink
Merge pull request #33 from WaywardHayward/main
Browse files Browse the repository at this point in the history
Fix: Success Code on 0 errors and warnings
  • Loading branch information
mtirionMSFT authored Oct 11, 2023
2 parents 0865020 + 6efa875 commit be45a48
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/DocLinkChecker/DocLinkChecker/App.cs
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,10 @@ protected override async Task ExecuteAsync(CancellationToken stoppingToken)
Program.ReturnValue = ReturnValue.Success;
}
}
else
{
Program.ReturnValue = ReturnValue.Success;
}

foreach (MarkdownError error in errors)
{
Expand Down

0 comments on commit be45a48

Please sign in to comment.