Skip to content

Commit

Permalink
It happened again - let's add some tracing
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveGilham committed Dec 11, 2023
1 parent 1350f64 commit 1a36edb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Build/actions.fs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,10 @@ module Actions =
let AssertResult (msg: string) (result: Fake.Core.ProcessResult<'a>) =
Assert.That(result.ExitCode, Is.EqualTo 0, msg)

let Run (file, dir, args) msg =
let Run (file, dir, (args:string seq)) msg =
printfn "Actions.Run %A on %A with %A" file dir args
args |> Seq.iter (printfn "%A")

CreateProcess.fromRawCommand
file
(if isNull args then
Expand Down

0 comments on commit 1a36edb

Please sign in to comment.