Skip to content

Commit

Permalink
Fix copy paste typo (#32951)
Browse files Browse the repository at this point in the history
I've accidentally copied the negation as well, leading to double negation
  • Loading branch information
Suchiman committed Jan 29, 2024
1 parent 101a0bd commit 1409285
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dotnet-ef/Project.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ bool FileMatches()
{
try
{
return !File.ReadAllBytes(efTargetsPath).SequenceEqual(efTargets);
return File.ReadAllBytes(efTargetsPath).SequenceEqual(efTargets);
}
catch
{
Expand Down

0 comments on commit 1409285

Please sign in to comment.