diff options
author | Alberto Sartori <alberto.sartori@huawei.com> | 2023-02-15 16:17:11 +0100 |
---|---|---|
committer | Alberto Sartori <alberto.sartori@huawei.com> | 2023-02-15 16:41:10 +0100 |
commit | dfcd8d353ff8e8920d9ad8e1e56f79f5a54b73ea (patch) | |
tree | 9b5b65553de653e969f40d6773f422ee3846c183 /src/buildtool/execution_api/local/local_action.cpp | |
parent | ddf097f7a1c1bb438f1fc97150a263cf28be9293 (diff) | |
download | justbuild-dfcd8d353ff8e8920d9ad8e1e56f79f5a54b73ea.tar.gz |
just-execute: report un-tagged hashes
Diffstat (limited to 'src/buildtool/execution_api/local/local_action.cpp')
-rw-r--r-- | src/buildtool/execution_api/local/local_action.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/buildtool/execution_api/local/local_action.cpp b/src/buildtool/execution_api/local/local_action.cpp index 4d08f7fe..414773c2 100644 --- a/src/buildtool/execution_api/local/local_action.cpp +++ b/src/buildtool/execution_api/local/local_action.cpp @@ -19,6 +19,7 @@ #include "gsl-lite/gsl-lite.hpp" #include "src/buildtool/common/bazel_types.hpp" +#include "src/buildtool/compatibility/native_support.hpp" #include "src/buildtool/execution_api/local/local_response.hpp" #include "src/buildtool/file_system/file_system_manager.hpp" #include "src/buildtool/file_system/object_type.hpp" @@ -60,7 +61,7 @@ auto LocalAction::Execute(Logger const* logger) noexcept " - exec_dir digest: {}\n" " - action digest: {}", root_digest_.hash(), - action.hash()); + NativeSupport::Unprefix(action.hash())); } if (do_cache) { |