Don't stop TUI on subcommand failure
This commit is contained in:
parent
86b0e4b31b
commit
7d334c18f5
@ -175,10 +175,9 @@ withIOAction :: (AppState -> (Int, ListResult) -> IO (Either String a))
|
|||||||
withIOAction action as = case listSelectedElement (lr as) of
|
withIOAction action as = case listSelectedElement (lr as) of
|
||||||
Nothing -> continue as
|
Nothing -> continue as
|
||||||
Just (ix, e) -> suspendAndResume $ do
|
Just (ix, e) -> suspendAndResume $ do
|
||||||
r <- action as (ix, e)
|
action as (ix, e) >>= \case
|
||||||
case r of
|
Left err -> putStrLn $ ("Error: " <> err)
|
||||||
Left err -> throwIO $ userError err
|
Right _ -> putStrLn "Success"
|
||||||
Right _ -> do
|
|
||||||
apps <- (fmap . fmap)
|
apps <- (fmap . fmap)
|
||||||
(\AppState {..} -> AppState { lr = listMoveTo ix lr, .. })
|
(\AppState {..} -> AppState { lr = listMoveTo ix lr, .. })
|
||||||
$ getAppState Nothing (pfreq as)
|
$ getAppState Nothing (pfreq as)
|
||||||
|
Loading…
Reference in New Issue
Block a user