From 587f8910ef0b6b4dd4ff2e05d5d99adbe7bad311 Mon Sep 17 00:00:00 2001 From: ryneeverett Date: Fri, 5 Apr 2024 10:35:15 -0400 Subject: [PATCH] sync: Point to manpage if unconfigured See #3340. --- src/commands/CmdSync.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/CmdSync.cpp b/src/commands/CmdSync.cpp index 2efa81131..5b0775fb3 100644 --- a/src/commands/CmdSync.cpp +++ b/src/commands/CmdSync.cpp @@ -88,7 +88,7 @@ int CmdSync::execute (std::string& output) os << "Sync server at " << origin; server_ident = os.str(); } else { - throw std::string ("No sync.* settings are configured."); + throw std::string ("No sync.* settings are configured. See task-sync(5)."); } std::stringstream out;