summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
});