From df7c095c7f80cad4f44eede880ec86fea016d760 Mon Sep 17 00:00:00 2001 From: Ben Gamari <ben@well-typed.com> Date: Wed, 30 Oct 2019 23:01:25 -0400 Subject: [PATCH] ci: s/--ghc-option/--ghc-options/ --- ci/TestPatches.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/TestPatches.hs b/ci/TestPatches.hs index 8e4ed289..7b4fefc3 100644 --- a/ci/TestPatches.hs +++ b/ci/TestPatches.hs @@ -58,7 +58,7 @@ cabalOptions :: Config -> [String] cabalOptions cfg = configCabalOptions cfg ++ [ "-w", configCompiler cfg - ] ++ concatMap (\opt -> ["--ghc-option", opt]) (configGhcOptions cfg) + ] ++ concatMap (\opt -> ["--ghc-options", opt]) (configGhcOptions cfg) config :: Parser TestPatches.Config config = -- GitLab