Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,11 @@ workspace.
setups. Defaults to `true`
-s, --seed-filepaths=<seedFilepaths>
A text file containing a newline separated list of
filepaths, each of these filepaths will be read and
used as a seed for all targets.
filepaths. Each file in this list will be read and
its content will be used as a SHA256 seed when
determining affected targets in the build graph.
Invalidating any of these files will effectively
mark all targets as affected.
-so, --bazelStartupOptions=<bazelStartupOptions>
Additional space separated Bazel client startup
options used when invoking Bazel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ class GenerateHashesCommand : Callable<Int> {
names = ["-s", "--seed-filepaths"],
description =
[
"A text file containing a newline separated list of filepaths, each of these filepaths will be read and used as a seed for all targets."])
"A text file containing a newline separated list of filepaths. Each file in this list will be read and its content will be used as a SHA256 seed when determining affected targets in the build graph. Invalidating any of these files will effectively mark all targets as affected."])
var seedFilepaths: File? = null

@CommandLine.Parameters(
Expand Down
Loading