Skip to content

Commit

Permalink
fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
matthid committed Mar 24, 2018
1 parent 67e712e commit 4b6f61d
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -17,9 +17,9 @@ open Fake.Core
open Fake.Core.TargetOperators

printfn "test_before targets"
Target.Create "Start" (fun _ -> ())
Target.create "Start" (fun _ -> ())

Target.Create "TestTarget" (fun _ ->
Target.create "TestTarget" (fun _ ->
printfn "Starting Build."
Trace.traceFAKE "Some Info from FAKE"
printfn "Ending Build."
Expand All @@ -30,4 +30,4 @@ Target.Create "TestTarget" (fun _ ->

printfn "before run targets"

Target.RunOrDefault "TestTarget"
Target.runOrDefault "TestTarget"

0 comments on commit 4b6f61d

Please sign in to comment.