summaryrefslogtreecommitdiffhomepage
path: root/Role/User.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Role/User.hs')
-rw-r--r--Role/User.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Role/User.hs b/Role/User.hs
index 0929f74..d11c235 100644
--- a/Role/User.hs
+++ b/Role/User.hs
@@ -42,7 +42,7 @@ run os = fromMaybe (ExitFailure 101) <$> connect
let url = sessionIDUrl sid "localhost" 8081
putStrLn ""
putStrLn "Others can connect to this session and help you debug by running:"
- putStrLn $ " debug-me --debug " ++ url
+ putStrLn $ " debug-me " ++ show url
hFlush stdout
withSessionLogger sid $ go ochan ichan usv controlinput controloutput
go ochan ichan usv controlinput controloutput logger = do
@@ -74,7 +74,7 @@ developerMessages (User _) = Nothing
shellCommand :: UserOpts -> IO (String, [String])
shellCommand os = case cmdToRun os of
- Just v -> return v
+ Just v -> return (v, [])
Nothing -> maybe ("bash", ["-l"]) (, []) <$> lookupEnv "SHELL"
-- | Log of recent Activity, with the most recent first.