diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-03-21 15:45:29 +0100 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-03-23 09:50:43 +0100 |
commit | e0c38d7083e6c972a432bfff3a9863f251f2170c (patch) | |
tree | 1290f8c97f99194089db67f61b23d79ad542b2ab /src/other_tools/ops_maps/git_update_map.cpp | |
parent | 12d0c288ea23e1bd7e0401223ba413bca3d94869 (diff) | |
download | justbuild-e0c38d7083e6c972a432bfff3a9863f251f2170c.tar.gz |
just-mr: Update calls to fetch and update operations...
...to ensure the temporary directories exist before they are needed,
as expected by those methods. This way, the TmpDir class takes care
to also clean up after itself.
Also, pass the local launcher to the methods that now shell out.
Diffstat (limited to 'src/other_tools/ops_maps/git_update_map.cpp')
-rw-r--r-- | src/other_tools/ops_maps/git_update_map.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/other_tools/ops_maps/git_update_map.cpp b/src/other_tools/ops_maps/git_update_map.cpp index f096d3a9..d399ff40 100644 --- a/src/other_tools/ops_maps/git_update_map.cpp +++ b/src/other_tools/ops_maps/git_update_map.cpp @@ -50,7 +50,7 @@ auto CreateGitUpdateMap(GitCASPtr const& git_cas, auto wrapped_logger = std::make_shared<AsyncMapConsumerLogger>( [logger](auto const& msg, bool fatal) { (*logger)( - fmt::format("While updating commit via tmp repo:\n{}", msg), + fmt::format("While updating commit from remote:\n{}", msg), fatal); }); // update commit |