From 69a827e266c335676c48dc303a157a79d075cc83 Mon Sep 17 00:00:00 2001 From: voidlizard Date: Thu, 13 Feb 2025 13:11:35 +0300 Subject: [PATCH] fixed checkpoint timestamp format --- hbs2-git3/app/GitRemoteHelper.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hbs2-git3/app/GitRemoteHelper.hs b/hbs2-git3/app/GitRemoteHelper.hs index 8cc927ea..23632714 100644 --- a/hbs2-git3/app/GitRemoteHelper.hs +++ b/hbs2-git3/app/GitRemoteHelper.hs @@ -37,7 +37,7 @@ import System.Console.ANSI formatTs :: Int -> String formatTs ts = - formatTime defaultTimeLocale "%Y-%m-%d %H:%M:%S" (posixSecondsToUTCTime (fromIntegral ts)) + formatTime defaultTimeLocale "%Y-%m-%d %H:%M" (posixSecondsToUTCTime (fromIntegral ts)) {- HLINT ignore "Use isEOF" -} {- HLINT ignore "Use putStrLn" -}