diff options
-rw-r--r-- | src/buildtool/main/main.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/buildtool/main/main.cpp b/src/buildtool/main/main.cpp index ac7e447d..3f74b4e1 100644 --- a/src/buildtool/main/main.cpp +++ b/src/buildtool/main/main.cpp @@ -564,8 +564,9 @@ auto DetermineRoots(CommonArguments const& cargs, ws_root = FileRoot{*main_ws_root}; } if (not ws_root) { - Logger::Log( - LogLevel::Error, "Unknown root for repository {}", repo); + Logger::Log(LogLevel::Error, + "Unknown workspace root for repository {}", + repo); std::exit(kExitFailure); } auto info = RepositoryConfig::RepositoryInfo{std::move(*ws_root)}; |