diff options
author | Joey Hess <joeyh@joeyh.name> | 2016-11-29 15:41:28 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2016-11-29 15:41:28 -0400 |
commit | 7eab686926b44f2a63245496844cb6fbb026c75e (patch) | |
tree | 652eb1ee07b568d86719ef53f23761e3fe881c18 /CmdLine | |
parent | d4591c5ef3a8003042857c4d6c9dadb0cef5a642 (diff) |
enable remotedaemon when assistant is not enabled
Needed to serve tor hidden services.
Diffstat (limited to 'CmdLine')
-rw-r--r-- | CmdLine/GitAnnex.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CmdLine/GitAnnex.hs b/CmdLine/GitAnnex.hs index 0049ecb3c..0fa14c98b 100644 --- a/CmdLine/GitAnnex.hs +++ b/CmdLine/GitAnnex.hs @@ -101,6 +101,7 @@ import qualified Command.DiffDriver import qualified Command.Smudge import qualified Command.Undo import qualified Command.Version +import qualified Command.RemoteDaemon #ifdef WITH_ASSISTANT import qualified Command.Watch import qualified Command.Assistant @@ -110,7 +111,6 @@ import qualified Command.WebApp #ifdef WITH_XMPP import qualified Command.XMPPGit #endif -import qualified Command.RemoteDaemon #endif import qualified Command.Test #ifdef WITH_TESTSUITE @@ -209,6 +209,7 @@ cmds testoptparser testrunner = , Command.Smudge.cmd , Command.Undo.cmd , Command.Version.cmd + , Command.RemoteDaemon.cmd #ifdef WITH_ASSISTANT , Command.Watch.cmd , Command.Assistant.cmd @@ -218,7 +219,6 @@ cmds testoptparser testrunner = #ifdef WITH_XMPP , Command.XMPPGit.cmd #endif - , Command.RemoteDaemon.cmd #endif , Command.Test.cmd testoptparser testrunner #ifdef WITH_TESTSUITE |