Skip to content

Commit

Permalink
Force build server output if the user wishes to
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Egger committed Apr 8, 2015
1 parent 9a95046 commit 0c24ce1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/FakeLib/UnitTest/XUnit2Helper.fs
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ let buildXUnit2Args parameters assembly =
|> append "-maxthreads"
|> append (sprintf "%i" parameters.MaxThreads)
|> appendIfFalse parameters.ShadowCopy "-noshadow"
|> appendIfTrue (buildServer = TeamCity) "-teamcity"
|> appendIfTrue (buildServer = AppVeyor) "-appveyor"
|> appendIfTrue (buildServer = TeamCity || parameters.Teamcity) "-teamcity"
|> appendIfTrue (buildServer = AppVeyor || parameters.Appveyor) "-appveyor"
|> appendIfTrue parameters.Wait "-wait"
|> appendIfTrue parameters.Silent "-silent"
|> appendIfTrue parameters.XmlOutput (sprintf "-xml\" \"%s" (dir @@ (name + ".xml")))
Expand Down

0 comments on commit 0c24ce1

Please sign in to comment.