summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver Reiche <oliver.reiche@huawei.com>2024-08-22 17:01:52 +0200
committerKlaus Aehlig <klaus.aehlig@huawei.com>2024-09-09 12:52:02 +0200
commit705c21eac14e6cddaad9e7034664e380694c04eb (patch)
tree149e64578f2982cb1f661ddc6e889cd6ed10dc46
parent87a240bbfcd2bc3db02a70224d47e52a4da0e47e (diff)
downloadjustbuild-705c21eac14e6cddaad9e7034664e380694c04eb.tar.gz
Executor: Also report missing output dirs
(cherry-picked from 1e5cc37df36204474cedef68486ba8b29492d259)
-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 b7ca034c..72abe9fe 100644
--- a/src/buildtool/execution_engine/executor/executor.hpp
+++ b/src/buildtool/execution_engine/executor/executor.hpp
@@ -559,7 +559,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;
});