diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2025-04-14 21:32:51 +0200 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-04-15 20:22:16 +0200 |
commit | dd028e6043d2b3d6751e6a002fb49dbb48a8dcfd (patch) | |
tree | 0541d233edddc6ca231144e52b726080588e1ddd /src/Main.hs | |
parent | 364c3cf920ea3ba41af9f8e0a0a6a9efd0edbafa (diff) |
Log command
Changelog: Added `log` command to show job log
Diffstat (limited to 'src/Main.hs')
-rw-r--r-- | src/Main.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Main.hs b/src/Main.hs index 49aa290..5fdd128 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -22,6 +22,7 @@ import System.IO import Command import Command.Checkout import Command.JobId +import Command.Log import Command.Run import Config import Output @@ -88,6 +89,7 @@ commands = ( SC $ Proxy @RunCommand) NE.:| [ SC $ Proxy @CheckoutCommand , SC $ Proxy @JobIdCommand + , SC $ Proxy @LogCommand ] lookupCommand :: String -> Maybe SomeCommandType |