diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2025-03-04 19:48:11 +0100 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-03-04 19:59:49 +0100 |
commit | 54f157fe5e7bb73c5d6e9d24a43aa95754ef0e15 (patch) | |
tree | c6869c026627fae4a1b39b1cd5004c0a856d53bf /src/Command.hs | |
parent | c2e5ef6b789a320ff923fd3ca24606a136831b2e (diff) |
Accept job file path on comman line
Changelog: Accept job file path on comman line
Diffstat (limited to 'src/Command.hs')
-rw-r--r-- | src/Command.hs | 2 |
1 files changed, 1 insertions, 1 deletions
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 |