summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKlaus T. Aehlig <aehlig@linta.de>2023-03-02 19:52:57 +0100
committerKlaus T. Aehlig <aehlig@linta.de>2023-03-02 19:52:57 +0100
commit16b04bcb5f8a84409ae1a864882d768acac9a680 (patch)
treeab132d45ce6d0fe7bce691f383ba14ee8b21b608 /src
parent2037d87d34c2a94b48b148b4151c1343169a5568 (diff)
downloadjustbuild-16b04bcb5f8a84409ae1a864882d768acac9a680.tar.gz
just-mr: change wording in info message
When asked to setup, report the number of repositories as repositories to "set up", not to "check out". Typically, we're not creating a checkout of that repository in the sense that some directory would contain the file strucutre of that repository in the file system. Typically, fetch into our big git repo, or create an artifical commit there to keep the resulting git tree there.
Diffstat (limited to 'src')
-rw-r--r--src/other_tools/just_mr/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/other_tools/just_mr/main.cpp b/src/other_tools/just_mr/main.cpp
index 5f5053e1..7157034d 100644
--- a/src/other_tools/just_mr/main.cpp
+++ b/src/other_tools/just_mr/main.cpp
@@ -1110,7 +1110,7 @@ void DefaultReachableRepositories(
// report progress
auto nr = repos_to_report->size();
Logger::Log(LogLevel::Info,
- "Found {} {} to check out",
+ "Found {} {} to set up",
nr,
nr == 1 ? "repository" : "repositories");