Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fdopen authored and jeremiedimino committed Dec 11, 2019
1 parent 6ddbd07 commit b8d606a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/discover/discover.ml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module C = Configurator.V1
type os = Win32 | Darwin | Other

let os c =
let win32 = C.ocaml_config_var c "os_tyle" = Some "Win32" in
let win32 = C.ocaml_config_var c "os_type" = Some "Win32" in
if win32 then Win32
else
match C.Process.run c "uname" [ "-s" ] with
Expand Down

0 comments on commit b8d606a

Please sign in to comment.