diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2024-03-23 17:12:28 +0100 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2024-03-23 17:49:50 +0100 |
commit | d684bc2b012e23e3cc0dfa1195a74abac661b926 (patch) | |
tree | 2c00f6e065219adcc609a3ee83fa241a8785ca01 /main | |
parent | a168d79d757c28cd328b9c9cd0fb5033c57a4ee7 (diff) |
Enable -Werror for CI testing
Diffstat (limited to 'main')
-rw-r--r-- | main/Version.hs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/main/Version.hs b/main/Version.hs index d7583bf..71af694 100644 --- a/main/Version.hs +++ b/main/Version.hs @@ -1,5 +1,9 @@ {-# LANGUAGE TemplateHaskell #-} +-- "Pattern match is redundant" warning can be generated based on template +-- haskell $$tGitVersion value +{-# OPTIONS_GHC -Wno-error=overlapping-patterns #-} + module Version ( versionLine, ) where |