mirror of https://github.com/voidlizard/hbs2
minor bugfix
This commit is contained in:
parent
8842843ffb
commit
ded14a0e26
|
@ -238,7 +238,8 @@ runWithRPC action = do
|
||||||
|
|
||||||
let answ = parseTop (LBS.unpack o) & fromRight mempty
|
let answ = parseTop (LBS.unpack o) & fromRight mempty
|
||||||
|
|
||||||
let so = headMay [ Text.unpack r | ListVal (Key "rpc:" [LitStrVal r]) <- answ ]
|
so <- pure (headMay [ Text.unpack r | ListVal (Key "rpc:" [LitStrVal r]) <- answ ])
|
||||||
|
`orDie` "hbs2-peer rpc not detected"
|
||||||
|
|
||||||
-- FIXME: logger-to-support-colors
|
-- FIXME: logger-to-support-colors
|
||||||
liftIO $ hPutDoc stderr $ yellow "rpc: found RPC" <+> pretty so
|
liftIO $ hPutDoc stderr $ yellow "rpc: found RPC" <+> pretty so
|
||||||
|
@ -246,8 +247,7 @@ runWithRPC action = do
|
||||||
yellow "rpc: add option" <+> parens ("rpc unix" <+> dquotes (pretty so))
|
yellow "rpc: add option" <+> parens ("rpc unix" <+> dquotes (pretty so))
|
||||||
<+> "to the config .hbs2/config"
|
<+> "to the config .hbs2/config"
|
||||||
<> line <> line
|
<> line <> line
|
||||||
|
pure so
|
||||||
pure so `orDie` "hbs2-peer rpc not detected"
|
|
||||||
|
|
||||||
runApp :: MonadUnliftIO m => WithLog -> App m () -> m ()
|
runApp :: MonadUnliftIO m => WithLog -> App m () -> m ()
|
||||||
runApp l m = do
|
runApp l m = do
|
||||||
|
|
Loading…
Reference in New Issue