diff options
author | Alexander Foremny <aforemny@posteo.de> | 2023-11-28 12:44:16 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2023-11-28 12:44:16 +0100 |
commit | 457cc50cf9cbf8906695758acadee4bf39a4eed8 (patch) | |
tree | 09dd7c92faf47fed230165037db48218b675afdd /app/History | |
parent | 34e3154c7ae1b002ff85cd0837c3cbf7d672d458 (diff) |
change provenance's hash form `Text` to `CommitHash`
Diffstat (limited to 'app/History')
-rw-r--r-- | app/History/CommitHash.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/History/CommitHash.hs b/app/History/CommitHash.hs index 3fcbb90..f1b8283 100644 --- a/app/History/CommitHash.hs +++ b/app/History/CommitHash.hs @@ -12,7 +12,7 @@ import GHC.Generics (Generic) data CommitHash = WorkingTree | Commit T.Text - deriving (Show, Binary, Generic) + deriving (Eq, Show, Binary, Generic) toShortText :: CommitHash -> T.Text toShortText WorkingTree = "<dirty>" |