Skip to content

Commit

Permalink
Write execution graph in the output base and not the workspace.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 525137955
Change-Id: I46165b1f5c71612f05e7dd45b9747ee3b097651a
  • Loading branch information
meisterT authored and Copybara-Service committed Apr 18, 2023
1 parent 6a47481 commit b5808a4
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -837,7 +837,7 @@ private ActionDumpWriter createActionDumpWriter(CommandEnvironment env)
if (path.isBlank()) {
path = ACTION_DUMP_NAME;
}
Path actionGraphFile = env.getWorkingDirectory().getRelative(path);
Path actionGraphFile = env.getOutputBase().getRelative(path);
try {
return new FilesystemActionDumpWriter(
env.getRuntime().getBugReporter(),
Expand Down

0 comments on commit b5808a4

Please sign in to comment.