Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
matthid committed Mar 24, 2018
1 parent 8beccf2 commit 67e712e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/Fake.Core.Xml/Xml.fs
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ let XslTransformer text =
if String.isNullOrEmpty text then null
else
let xslCompiledTransform = new XslCompiledTransform()
Doc(text) |> xslCompiledTransform.Load
createDoc(text) |> xslCompiledTransform.Load
xslCompiledTransform
/// Transforms a XmlDocument using a XslCompiledTransform.
/// ## Parameters
Expand Down
2 changes: 1 addition & 1 deletion src/test/Fake.Core.IntegrationTests/TestHelpers.fs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ let prepare scenario =

let directFakeInPath command scenarioPath target =
let result =
Process.ExecProcessAndReturnMessages (fun (info:Process.ProcStartInfo) ->
Process.execWithResult (fun (info:Process.ProcStartInfo) ->
{ info with
FileName = fakeToolPath
WorkingDirectory = scenarioPath
Expand Down

0 comments on commit 67e712e

Please sign in to comment.