Skip to content

Commit

Permalink
fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
matthid committed Sep 3, 2020
1 parent 206ea55 commit c6d83f4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/app/Fake.Testing.ReportGenerator/ReportGenerator.fs
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,9 @@ let internal createProcess setParams (reports : string seq) =
/// - `reports` - Coverage reports.
let generateReports setParams (reports : string seq) =
use __ = Trace.traceTask "ReportGenerator" "Generating reports"

match reports with

let list = reports |> Seq.toList
match list with
| [] ->
Trace.trace "No reports given. Ignoring task"
| reports ->
Expand Down

0 comments on commit c6d83f4

Please sign in to comment.