diff options
author | Justin Bedo <cu@cua0.org> | 2024-05-14 11:12:26 +1000 |
---|---|---|
committer | Justin Bedo <cu@cua0.org> | 2024-05-14 11:16:50 +1000 |
commit | 0a1240cc2b058887de0ef87394484eff262e4bf0 (patch) | |
tree | 1e8c186e903d38e02f80c9ab0a5f2dac61c9fe3b /bin/dedumi.hs | |
parent | 86a6539f4667f5a4f36cf2924853eca95a5f470f (diff) |
MacOS does not use a case sensitive file system, hence dedumi.hs and
Dedumi.hs collided.
Diffstat (limited to 'bin/dedumi.hs')
-rw-r--r-- | bin/dedumi.hs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bin/dedumi.hs b/bin/dedumi.hs new file mode 100644 index 0000000..d26d48a --- /dev/null +++ b/bin/dedumi.hs @@ -0,0 +1,8 @@ +{-# LANGUAGE OverloadedStrings #-} +module Main where + +import Dedumi +import Options.Generic + +main :: IO () +main = unwrapRecord "UMI deduplication" >>= go |