Skip to content

Commit

Permalink
Merge pull request #1134 from TristanCacqueray/lentille-url
Browse files Browse the repository at this point in the history
Display the change url in the lentille CLI
  • Loading branch information
mergify[bot] authored Dec 28, 2024
2 parents b0cc86b + 9664214 commit 88a2392
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CLI.hs
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ usageLentille =
humanOption = Options.Applicative.flag False True (long "human" <> O.help "Human readable display")

formatChange :: (Change, [ChangeEvent]) -> String
formatChange (c, _) = let (EChange {..}) = from c in [i|U:#{echangeUpdatedAt}\tC:#{echangeCreatedAt}\tT:#{echangeTitle}|]
formatChange (c, _) = let (EChange {..}) = from c in [i|#{echangeUrl}\t#{echangeTitle}\t#{echangeUpdatedAt}|]

runStandaloneStream = runEff . runErrorIO @LentilleError . runConcurrent . runFailIO . runLoggerEffect . runTime . runRetry . runHttpEffect . G.runGerrit . runPrometheus

Expand Down

0 comments on commit 88a2392

Please sign in to comment.