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: cli/src/main/kotlin/com/bazel_diff/cli/GenerateHashesCommand.kt
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -79,10 +79,10 @@ class GenerateHashesCommand : Callable<Int> {
79
79
var fineGrainedHashExternalRepos:Set<String> = emptySet()
80
80
81
81
@CommandLine.Option(
82
-
names = ["--fineGrainedHashExternalReposFile"],
83
-
description =
84
-
[
85
-
"A text file containing a newline separated list of external repos. Similar to --fineGrainedHashExternalRepos but helps you avoid exceeding max arg length. Mutually exclusive with --fineGrainedHashExternalRepos."])
82
+
names = ["--fineGrainedHashExternalReposFile"],
83
+
description =
84
+
[
85
+
"A text file containing a newline separated list of external repos. Similar to --fineGrainedHashExternalRepos but helps you avoid exceeding max arg length. Mutually exclusive with --fineGrainedHashExternalRepos."])
Copy file name to clipboardExpand all lines: cli/src/main/kotlin/com/bazel_diff/di/Modules.kt
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -34,14 +34,14 @@ fun hasherModule(
34
34
excludeExternalTargets:Boolean,
35
35
): Module= module {
36
36
if (fineGrainedHashExternalReposFile !=null&& fineGrainedHashExternalRepos.isNotEmpty()) {
37
-
System.err.println("Error: fineGrainedHashExternalReposFile and fineGrainedHashExternalRepos are mutually exclusive - please provide only one of them")
37
+
System.err.println(
38
+
"Error: fineGrainedHashExternalReposFile and fineGrainedHashExternalRepos are mutually exclusive - please provide only one of them")
38
39
System.exit(1)
39
40
}
40
-
val updatedFineGrainedHashExternalRepos = fineGrainedHashExternalReposFile?.let { file ->
0 commit comments