Skip to content

Commit

Permalink
mono build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dsyme committed May 24, 2018
1 parent d9802d7 commit f1d28a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.fsx
Expand Up @@ -112,7 +112,7 @@ Target "RunTests" (fun _ ->
// This is a bit of a hack to find the output test DLL and run xunit using Mono directly
let dir = "tests/bin/" + config + "/net461"
let file =
(Array.append [| dir |] (System.IO.Directory.GetDirectories(dir))
(Array.append [| dir |] (System.IO.Directory.GetDirectories(dir)))
|> Array.pick (fun subdir ->
let file = subdir + "/FSharp.TypeProviders.SDK.Tests.dll"
if System.IO.File.Exists file then Some file else None)
Expand Down

0 comments on commit f1d28a4

Please sign in to comment.