Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
josefpihrt committed Jan 5, 2024
1 parent ea7d13f commit 35bacc7
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/CommandLine/Commands/FindCommand`1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,11 @@ public override bool CanEndProgress
{
get
{
return !Options.OmitPath
|| (ContentFilter is not null
&& !Options.OmitContent
&& _logger.ConsoleOut.Verbosity > Verbosity.Minimal);
return !Options.AggregateOnly
&& (!Options.OmitPath
|| (ContentFilter is not null
&& !Options.OmitContent
&& _logger.ConsoleOut.Verbosity > Verbosity.Minimal));
}
}

Expand Down

0 comments on commit 35bacc7

Please sign in to comment.