From 23496e93b020b9444f903d4b50a58ccaae42e7bc Mon Sep 17 00:00:00 2001 From: Vidar Holen Date: Sat, 5 Dec 2015 13:08:02 -0800 Subject: [PATCH] Fix compiler warning about missing field --- shellcheck.hs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shellcheck.hs b/shellcheck.hs index 117d6f7..5848542 100644 --- a/shellcheck.hs +++ b/shellcheck.hs @@ -65,7 +65,8 @@ data Options = Options { defaultOptions = Options { checkSpec = emptyCheckSpec, - externalSources = False + externalSources = False, + color = ColorAuto } usageHeader = "Usage: shellcheck [OPTIONS...] FILES..."