diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2025-03-11 19:24:28 +0100 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-03-11 19:50:56 +0100 |
commit | 6fdbed5e617541a46d4610e5c5f034b4e274c04d (patch) | |
tree | 6cb0759419e5a97e798e044387e7a5bf4c7ed05f /src/Command.hs | |
parent | edc58142325d1fa985e04a2bfc7713771a2a7294 (diff) |
Accept jobs to run on command-line
Changelog: Accept names of jobs to run as command-line arguments
Diffstat (limited to 'src/Command.hs')
-rw-r--r-- | src/Command.hs | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/Command.hs b/src/Command.hs index 8ca0655..2c511df 100644 --- a/src/Command.hs +++ b/src/Command.hs @@ -6,6 +6,7 @@ module Command ( CommandArgumentsType(..), CommandExec(..), + tfail, CommandInput(..), getCommonOptions, getConfigPath, @@ -20,6 +21,7 @@ import Control.Monad.Reader import Data.Kind import Data.Text (Text) import Data.Text qualified as T +import Data.Text.IO qualified as T import System.Console.GetOpt import System.Exit @@ -84,9 +86,12 @@ newtype CommandExec a = CommandExec (ReaderT CommandInput IO a) deriving (Functor, Applicative, Monad, MonadIO) instance MonadFail CommandExec where - fail err = liftIO $ do - hPutStrLn stderr err - exitFailure + fail = tfail . T.pack + +tfail :: Text -> CommandExec a +tfail err = liftIO $ do + T.hPutStrLn stderr err + exitFailure data CommandInput = CommandInput { ciOptions :: CommonOptions |