aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortilpner2018-09-22 10:02:43 +0200
committertilpner2018-09-22 10:02:43 +0200
commit013ea54e58f9561f434b69e2253298ddf970d16e (patch)
tree4d3cdaeb8cf15ab40c2f8d5f5b74cf012f243591
parentb3a95cc7c03aa703ea450d4e3fcfa754c89771ce (diff)
downloadqeval-013ea54e58f9561f434b69e2253298ddf970d16e.tar.gz
qeval-013ea54e58f9561f434b69e2253298ddf970d16e.tar.xz
qeval-013ea54e58f9561f434b69e2253298ddf970d16e.zip
Disable ghci diagnostic colors
-rw-r--r--evaluators.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/evaluators.nix b/evaluators.nix
index 4e9c357..cab9b80 100644
--- a/evaluators.nix
+++ b/evaluators.nix
@@ -382,7 +382,7 @@ let
'';
command = ''
- ghci -v0 < "$1"
+ ghci -v0 -fdiagnostics-color=never < "$1"
'';
testInput = "putStrLn \"success\"";