summaryrefslogtreecommitdiff
path: root/src/buildtool/execution_engine/executor/executor.hpp
diff options
context:
space:
mode:
authorOliver Reiche <oliver.reiche@huawei.com>2024-08-22 17:01:52 +0200
committerOliver Reiche <oliver.reiche@huawei.com>2024-08-23 12:16:37 +0200
commit1e5cc37df36204474cedef68486ba8b29492d259 (patch)
tree9177c6de5aa85b7ce4b70bacb7f98294c342815f /src/buildtool/execution_engine/executor/executor.hpp
parent2fb942fbc8ece593a312718476c638df69ef0149 (diff)
downloadjustbuild-1e5cc37df36204474cedef68486ba8b29492d259.tar.gz
Executor: Also report missing output dirs
Diffstat (limited to 'src/buildtool/execution_engine/executor/executor.hpp')
-rw-r--r--src/buildtool/execution_engine/executor/executor.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/buildtool/execution_engine/executor/executor.hpp b/src/buildtool/execution_engine/executor/executor.hpp
index 1b2bfe26..26e415b1 100644
--- a/src/buildtool/execution_engine/executor/executor.hpp
+++ b/src/buildtool/execution_engine/executor/executor.hpp
@@ -590,7 +590,10 @@ class ExecutorImpl {
"action executed with missing outputs.\n"
" Action outputs should be the following artifacts:"};
for (auto const& output : output_files) {
- message += "\n - " + output;
+ message += "\n - file: " + output;
+ }
+ for (auto const& output : output_dirs) {
+ message += "\n - dir: " + output;
}
return message;
});