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
+7-1
Original file line number
Diff line number
Diff line change
@@ -136,6 +136,12 @@ class GenerateHashesCommand : Callable<Int> {
136
136
)
137
137
var ignoredRuleHashingAttributes:Set<String> = emptySet()
138
138
139
+
@CommandLine.Option(
140
+
names = ["-m", "--modified-filepaths"],
141
+
description = ["Experimental: A text file containing a newline separated list of filepaths (relative to the workspace) these filepaths should represent the modified files between the specified revisions and will be used to scope what files are hashed during hash generation."]
142
+
)
143
+
var modifiedFilepaths:File?=null
144
+
139
145
@CommandLine.Spec
140
146
lateinitvar spec:CommandLine.Model.CommandSpec
141
147
@@ -160,7 +166,7 @@ class GenerateHashesCommand : Callable<Int> {
0 commit comments