summaryrefslogtreecommitdiff
path: root/src/Main.hs
diff options
context:
space:
mode:
authorRoman Smrž <roman.smrz@seznam.cz>2025-04-14 21:32:51 +0200
committerRoman Smrž <roman.smrz@seznam.cz>2025-04-15 20:22:16 +0200
commitdd028e6043d2b3d6751e6a002fb49dbb48a8dcfd (patch)
tree0541d233edddc6ca231144e52b726080588e1ddd /src/Main.hs
parent364c3cf920ea3ba41af9f8e0a0a6a9efd0edbafa (diff)
Log command
Changelog: Added `log` command to show job log
Diffstat (limited to 'src/Main.hs')
-rw-r--r--src/Main.hs2
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