# HG changeset patch # User Mike Becker # Date 1738620851 -3600 # Node ID bc8b76ca9ee9f771df67c6d32f5ec27fa6e16b7a # Parent 8639ccd855ba41b3c8de93fabf2b8bfbcc9c9d65 fix possible misleading error output diff -r 8639ccd855ba -r bc8b76ca9ee9 src/main.cpp --- a/src/main.cpp Mon Feb 03 23:13:19 2025 +0100 +++ b/src/main.cpp Mon Feb 03 23:14:11 2025 +0100 @@ -203,14 +203,14 @@ if (repo.type == fm::HG) { proc.setbin(settings.hg); if (proc.exec({"pull", "-y"})) { - fprintf(stderr, "Pulling repo '%s' failed!\nMaybe there is no remote?\n", repo.path.c_str()); + fprintf(stderr, "Pulling repo '%s' failed - continue without pull.\n", repo.path.c_str()); } else if (proc.exec({"update"})) { fprintf(stderr, "Updating repo '%s' failed!\nMaybe there are local changes?\n", repo.path.c_str()); } } else { proc.setbin(settings.git); if (proc.exec({"pull", "-q"})) { - fprintf(stderr, "Pulling repo '%s' failed!\nMaybe there is no remote or there are local changes?\n", repo.path.c_str()); + fprintf(stderr, "Pulling repo '%s' failed - continue without pull.\n", repo.path.c_str()); } } }