diff options
author | Joey Hess <joey@kitenet.net> | 2013-04-08 15:04:35 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-04-08 15:04:35 -0400 |
commit | e2057f41f7dfc22ad85b0e087f42364f21bf7fbd (patch) | |
tree | 19769bf97ca9263d814be6a54b8af51e599702bd /Command/Watch.hs | |
parent | a664ee5e45a57713d5b47d9fa592e78881994055 (diff) |
webapp: New --listen= option allows running the webapp on one computer and connecting to it from another.
Does not yet use HTTPS. I'd need to generate a certificate, and I'm not
sure what's the best way to do that.
Diffstat (limited to 'Command/Watch.hs')
-rw-r--r-- | Command/Watch.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/Watch.hs b/Command/Watch.hs index f965c30cd..c5fd1a8cd 100644 --- a/Command/Watch.hs +++ b/Command/Watch.hs @@ -31,5 +31,5 @@ start :: Bool -> Bool -> Bool -> CommandStart start assistant foreground stopdaemon = do if stopdaemon then stopDaemon - else startDaemon assistant foreground Nothing -- does not return + else startDaemon assistant foreground Nothing Nothing -- does not return stop |