diff options
author | stuebinm | 2022-10-11 11:28:30 +0200 |
---|---|---|
committer | stuebinm | 2022-10-11 11:28:30 +0200 |
commit | a29be8315c2e6647a5878529affda84ec8036ccb (patch) | |
tree | 9e5973c8e4a149dfcf2b20fcff6c08fe8c90fe59 /src | |
parent | b6bc6c59c003cfbcfad2d5b1cf8809476f60fa17 (diff) |
update stack resolver
(also got rid of the map templater, which had version problems with
mustache — it's not likely anyone will need it anyways)
Diffstat (limited to 'src')
-rw-r--r-- | src/Version.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Version.hs b/src/Version.hs index e62c9b8..1748512 100644 --- a/src/Version.hs +++ b/src/Version.hs @@ -9,7 +9,7 @@ import qualified Language.Haskell.TH as TH import System.Process (readProcess) version :: String -version = "walint divoc bb3 2022 (" <> +version = "walint generic 2022 (" <> $(do hash <- liftIO $ catchAny (readProcess "git" ["rev-parse", "HEAD"] "") (\_ -> pure "[unknown]") |