diff --git a/Build/actions.fs b/Build/actions.fs index 04af5e8f..3ad21eae 100644 --- a/Build/actions.fs +++ b/Build/actions.fs @@ -401,7 +401,10 @@ using System.Runtime.CompilerServices; 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