Skip to content

Commit 5a4c8eb

Browse files
Fixes ignoredRuleHashingAttributes space args (#205)
This should use comma separated values Related #198 (comment)
1 parent 209f08d commit 5a4c8eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/src/main/kotlin/com/bazel_diff/cli/GenerateHashesCommand.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ class GenerateHashesCommand : Callable<Int> {
132132
names = ["--ignoredRuleHashingAttributes"],
133133
description = ["Attributes that should be ignored when hashing rule targets."],
134134
scope = CommandLine.ScopeType.INHERIT,
135-
converter = [OptionsConverter::class],
135+
converter = [CommaSeparatedValueConverter::class],
136136
)
137137
var ignoredRuleHashingAttributes: Set<String> = emptySet()
138138

0 commit comments

Comments
 (0)