diff options
author | Maksim Denisov <denisov.maksim@huawei.com> | 2024-06-20 10:29:17 +0200 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2024-06-25 13:59:48 +0200 |
commit | 30d62a301e668a6b20906104ff66fa3aad3354c3 (patch) | |
tree | 4597aa013c2c1fd4fc6aa8b8252f929a5d1413ad /src/other_tools/just_mr/launch.cpp | |
parent | 6f48dfe97ccad8ba251bd09464dbd8d4427014c2 (diff) | |
download | justbuild-30d62a301e668a6b20906104ff66fa3aad3354c3.tar.gz |
Use a general boolean for compatible in MultiRepoCommonArguments
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 693d8808..132ed065 100644 --- a/src/other_tools/just_mr/launch.cpp +++ b/src/other_tools/just_mr/launch.cpp @@ -167,7 +167,7 @@ auto CallJust(std::optional<std::filesystem::path> const& config_file, } // forward remote execution and mutual TLS arguments if (supports_remote) { - if (common_args.compatible == true) { + if (common_args.compatible) { cmd.emplace_back("--compatible"); } if (common_args.remote_execution_address) { |