From cd1b2a0b263bef34e9afc98ad5ba4ddcc60bf204 Mon Sep 17 00:00:00 2001 From: Hannes Mehnert Date: Tue, 24 Sep 2024 13:44:40 +0200 Subject: [PATCH] output SHA256 sum without spaces --- lib/views.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/views.ml b/lib/views.ml index 630c8a3..eac0e80 100644 --- a/lib/views.ml +++ b/lib/views.ml @@ -202,7 +202,7 @@ let artifact else txtf "%a" Fpath.pp filepath ]; H.txt " "; - H.code [txtf "SHA256:%a" Ohex.pp sha256]; + H.code [txtf "SHA256:%s" (Ohex.encode sha256)]; txtf " (%a)" Fmt.byte_size size; ]