diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-08-24 11:59:34 +0200 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-08-25 18:11:23 +0200 |
commit | d44e1c10d642991b874a952c5d4fb7710d14d78b (patch) | |
tree | aa015da49dd465c325f69ccdb9dc4c997a5a5925 /src/other_tools/just_mr/launch.cpp | |
parent | 0bd3bb3c38e6c50650bf05aab8d69e62036b7765 (diff) | |
download | justbuild-d44e1c10d642991b874a952c5d4fb7710d14d78b.tar.gz |
just-mr utils: Extract setup-related code into separate library
This better separates the utility methods used in just-mr commands
and avoids any cyclic dependencies that might arise in new utility
methods requiring both existing utilities and the command-line
arguments.
Diffstat (limited to 'src/other_tools/just_mr/launch.cpp')
-rw-r--r-- | src/other_tools/just_mr/launch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/other_tools/just_mr/launch.cpp b/src/other_tools/just_mr/launch.cpp index 61953cda..bc70bb7f 100644 --- a/src/other_tools/just_mr/launch.cpp +++ b/src/other_tools/just_mr/launch.cpp @@ -25,7 +25,7 @@ #include "src/buildtool/storage/garbage_collector.hpp" #include "src/other_tools/just_mr/exit_codes.hpp" #include "src/other_tools/just_mr/setup.hpp" -#include "src/other_tools/just_mr/utils.hpp" +#include "src/other_tools/just_mr/setup_utils.hpp" #include "src/utils/cpp/file_locking.hpp" auto CallJust(std::optional<std::filesystem::path> const& config_file, |