summaryrefslogtreecommitdiff
path: root/src/buildtool/execution_engine/executor
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildtool/execution_engine/executor')
-rw-r--r--src/buildtool/execution_engine/executor/executor.hpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/buildtool/execution_engine/executor/executor.hpp b/src/buildtool/execution_engine/executor/executor.hpp
index 7015f559..d47397f0 100644
--- a/src/buildtool/execution_engine/executor/executor.hpp
+++ b/src/buildtool/execution_engine/executor/executor.hpp
@@ -928,7 +928,9 @@ class Executor {
context_.progress);
if (context_.profile) {
(*context_.profile)
- ->NoteActionCompleted(action->Content().Id(), *response);
+ ->NoteActionCompleted(action->Content().Id(),
+ *response,
+ action->Content().Cwd());
}
return result;
}
@@ -956,7 +958,8 @@ class Executor {
logger, *response, action, context_.statistics, context_.progress);
if (context_.profile) {
(*context_.profile)
- ->NoteActionCompleted(action->Content().Id(), *response);
+ ->NoteActionCompleted(
+ action->Content().Id(), *response, action->Content().Cwd());
}
return result;
}