diff options
author | tilpner | 2018-09-22 10:02:43 +0200 |
---|---|---|
committer | tilpner | 2018-09-22 10:02:43 +0200 |
commit | 013ea54e58f9561f434b69e2253298ddf970d16e (patch) | |
tree | 4d3cdaeb8cf15ab40c2f8d5f5b74cf012f243591 | |
parent | b3a95cc7c03aa703ea450d4e3fcfa754c89771ce (diff) | |
download | qeval-013ea54e58f9561f434b69e2253298ddf970d16e.tar.gz qeval-013ea54e58f9561f434b69e2253298ddf970d16e.tar.xz qeval-013ea54e58f9561f434b69e2253298ddf970d16e.zip |
Disable ghci diagnostic colors
-rw-r--r-- | evaluators.nix | 2 |
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\""; |