aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOla Rozenfeld <olaola@google.com>2018-10-22 11:40:22 -0400
committerGitHub <noreply@github.com>2018-10-22 11:40:22 -0400
commit7d8f4f5ef864690d325f706b720c455d89c6241f (patch)
treec368dd37fa2d11af1b611747cf631cc063da7932
parent28a20d81532697301bbb3ea08e56d7565bac1889 (diff)
downloadbazelbuild-remote-apis-7d8f4f5ef864690d325f706b720c455d89c6241f.tar.gz
Remove misleading word 'contents' from output directories documentation (#31)
-rw-r--r--build/bazel/remote/execution/v2/remote_execution.proto13
1 files changed, 8 insertions, 5 deletions
diff --git a/build/bazel/remote/execution/v2/remote_execution.proto b/build/bazel/remote/execution/v2/remote_execution.proto
index 5a3034f..a60fd1a 100644
--- a/build/bazel/remote/execution/v2/remote_execution.proto
+++ b/build/bazel/remote/execution/v2/remote_execution.proto
@@ -429,7 +429,8 @@ message Command {
// A list of the output files that the client expects to retrieve from the
// action. Only the listed files, as well as directories listed in
// `output_directories`, will be returned to the client as output.
- // Other files that may be created during command execution are discarded.
+ // Other files or directories that may be created during command execution
+ // are discarded.
//
// The paths are relative to the working directory of the action execution.
// The paths are specified using a single forward slash (`/`) as a path
@@ -446,10 +447,12 @@ message Command {
repeated string output_files = 3;
// A list of the output directories that the client expects to retrieve from
- // the action. Only the contents of the indicated directories (recursively
- // including the contents of their subdirectories) will be
- // returned, as well as files listed in `output_files`. Other files that may
- // be created during command execution are discarded.
+ // the action. Only the listed directories will be returned (an entire
+ // directory structure will be returned as a
+ // [Tree][build.bazel.remote.execution.v2.Tree] message digest, see
+ // [OutputDirectory][build.bazel.remote.execution.v2.OutputDirectory]), as
+ // well as files listed in `output_files`. Other files or directories that
+ // may be created during command execution are discarded.
//
// The paths are relative to the working directory of the action execution.
// The paths are specified using a single forward slash (`/`) as a path