Skip to content

Commit c37d93a

Browse files
committed
fix travis build, -frameworks needs to append to p not visa versa
1 parent 822c40d commit c37d93a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/scripts/Testing.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module Tests =
3030
let p = ["xunit"; "-parallel"; "all"; "-xml"; "../.." @@ Paths.Output("TestResults-Desktop-Clr.xml")]
3131
match (target, buildingOnTravis) with
3232
| (_, true)
33-
| (One, _) -> p |> List.append ["-framework"; "netcoreapp1.1"]
33+
| (One, _) -> ["-framework"; "netcoreapp1.1"] |> List.append p
3434
| _ -> p
3535

3636
let dotnet = Tooling.BuildTooling("dotnet")

0 commit comments

Comments
 (0)