diff options
Diffstat (limited to 'lib/terminal.ml')
-rw-r--r-- | lib/terminal.ml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/terminal.ml b/lib/terminal.ml index 1e6c2557..0f6b23af 100644 --- a/lib/terminal.ml +++ b/lib/terminal.ml @@ -167,7 +167,8 @@ let reset_style = { negative = Some false; } -let has_style t = Unix.isatty t +let has_style t = + Unix.isatty t && Sys.os_type = "Unix" let split c s = let len = String.length s in |