diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2025-07-06 12:48:04 +0200 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-07-06 14:42:05 +0200 |
commit | 95d084f71ca84400dd24030ec608c84727bc5405 (patch) | |
tree | 41a3dc80cebef91bc9106c514196cc0d699478dd /src/Main.hs | |
parent | d87acf3a084349c9575f1ecb53f5003733d407c0 (diff) |
Shell command
Changelog: Added `shell` command to open a shell prepared for given job
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 ec03acb..83b0ab3 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -25,6 +25,7 @@ import Command.Extract import Command.JobId import Command.Log import Command.Run +import Command.Shell import Command.Subtree import Config import Output @@ -93,6 +94,7 @@ commands = , SC $ Proxy @ExtractCommand , SC $ Proxy @JobIdCommand , SC $ Proxy @LogCommand + , SC $ Proxy @ShellCommand , SC $ Proxy @SubtreeCommand ] |