diff options
Diffstat (limited to 'src/other_tools/just_mr/fetch.cpp')
-rw-r--r-- | src/other_tools/just_mr/fetch.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/other_tools/just_mr/fetch.cpp b/src/other_tools/just_mr/fetch.cpp index 0dd3a155..3585d2f3 100644 --- a/src/other_tools/just_mr/fetch.cpp +++ b/src/other_tools/just_mr/fetch.cpp @@ -86,8 +86,7 @@ auto MultiRepoFetch(std::shared_ptr<Configuration> const& config, if (not fetch_dir) { for (auto const& d : common_args.just_mr_paths->distdirs) { if (FileSystemManager::IsDirectory(d)) { - fetch_dir = std::filesystem::weakly_canonical( - std::filesystem::absolute(d)); + fetch_dir = std::filesystem::weakly_canonical(d); break; } } @@ -147,9 +146,8 @@ auto MultiRepoFetch(std::shared_ptr<Configuration> const& config, std::filesystem::path(repo_path->String()); if (not repo_path_as_path.is_absolute()) { repo_path_as_path = std::filesystem::weakly_canonical( - std::filesystem::absolute( - common_args.just_mr_paths->setup_root / - repo_path_as_path)); + common_args.just_mr_paths->setup_root / + repo_path_as_path); } // only warn if repo workspace differs to invocation workspace if (not is_subpath( |