From 54f157fe5e7bb73c5d6e9d24a43aa95754ef0e15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Smr=C5=BE?= Date: Tue, 4 Mar 2025 19:48:11 +0100 Subject: Accept job file path on comman line Changelog: Accept job file path on comman line --- src/Command.hs | 2 +- src/Main.hs | 32 +++++++++++++++++++++++--------- 2 files changed, 24 insertions(+), 10 deletions(-) (limited to 'src') diff --git a/src/Command.hs b/src/Command.hs index c73b857..2114d90 100644 --- a/src/Command.hs +++ b/src/Command.hs @@ -93,7 +93,7 @@ getConfigPath :: CommandExec FilePath getConfigPath = CommandExec $ do asks ciConfigPath >>= \case Nothing -> liftIO $ do - hPutStrLn stderr "no config file found" + hPutStrLn stderr "no job file found" exitFailure Just path -> return path diff --git a/src/Main.hs b/src/Main.hs index a6dfe07..6a7cf8d 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -12,6 +12,7 @@ import Data.Text qualified as T import System.Console.GetOpt import System.Environment import System.Exit +import System.FilePath import System.IO import Command @@ -61,14 +62,19 @@ lookupCommand name = find p commands main :: IO () main = do args <- getArgs - (opts, cmdargs) <- case getOpt RequireOrder options args of + let ( mbConfigPath, args' ) = case args of + (path : rest) + | any isPathSeparator path -> ( Just path, rest ) + _ -> ( Nothing, args ) + + (opts, cmdargs) <- case getOpt RequireOrder options args' of (o, cmdargs, []) -> return (foldl (flip id) defaultCmdlineOptions o, cmdargs) (_, _, errs) -> do hPutStrLn stderr $ concat errs <> "Try `minici --help' for more information." exitFailure when (optShowHelp opts) $ do - let header = "Usage: minici [