Skip to content

Commit

Permalink
Fix file search pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
si618 committed Mar 11, 2024
1 parent 445d54d commit 237fe8b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Benchmarks.App/Commands/WorkflowCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ internal sealed class WorkflowCommand : Command
[SuppressMessage("ReSharper", "RedundantNullableFlowAttribute")]
public override int Execute([NotNull] CommandContext context)
{
ConsoleWriter.WriteHeader();

if (BenchmarkRunner.IsDebugConfiguration(true))
{
return 1;
Expand All @@ -25,7 +23,7 @@ public override int Execute([NotNull] CommandContext context)
private static void CombineBenchmarkResults(
string resultsDir = "./BenchmarkDotNet.Artifacts/results",
string resultsFile = "Benchmarks",
string searchPattern = "Benchmarks.json")
string searchPattern = "Benchmarks.*.json")
{
var resultsPath = Path.Combine(resultsDir, resultsFile + ".json");

Expand Down

0 comments on commit 237fe8b

Please sign in to comment.