You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/com/bazel_diff/main.java
+10-12
Original file line number
Diff line number
Diff line change
@@ -35,9 +35,6 @@ class GenerateHashes implements Callable<Integer> {
35
35
@Option(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.")
36
36
FileseedFilepaths;
37
37
38
-
@Option(names = {"--displayElapsedTime"}, description = "This flag controls whether to print out elapsed time for bazel query and content hashing")
39
-
booleandisplayElapsedTime;
40
-
41
38
@Parameters(index = "0", description = "The filepath to write the resulting JSON of dictionary target => SHA-256 values")
System.out.printf("BazelDiff: Generate-hashes command finishes in %d seconds%n", generateHashSeconds);
74
70
}
@@ -113,6 +109,9 @@ class BazelDiff implements Callable<Integer> {
113
109
@Option(names = {"-k", "--keep_going"}, negatable = true, description = "This flag controls if `bazel query` will be executed with the `--keep_going` flag or not. Disabling this flag allows you to catch configuration issues in your Bazel graph, but may not work for some Bazel setups. Defaults to `true`", scope = ScopeType.INHERIT)
0 commit comments