Skip to content

Commit

Permalink
Fix my typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Jericho committed Nov 13, 2022
1 parent 0eaff48 commit 6838b28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ Task("Upload-Coverage-Result-Coveralls")
}
catch (Exception e)
{
Information($"CATCH: Failed to upload coverage result to Coveralls: {exception.Message}")
Information($"CATCH: Failed to upload coverage result to Coveralls: {e.Message}");
}
});

Expand All @@ -326,7 +326,7 @@ Task("Upload-Coverage-Result-Codecov")
}
catch (Exception e)
{
Information($"CATCH: Failed to upload coverage result to Codecov: {exception.Message}")
Information($"CATCH: Failed to upload coverage result to Codecov: {e.Message}");
}
});

Expand Down

0 comments on commit 6838b28

Please sign in to comment.