From 3830cbe943013f426a579601405e0ba7acbe5943 Mon Sep 17 00:00:00 2001 From: Maxwell Elliott Date: Fri, 2 Feb 2024 21:35:44 -0500 Subject: [PATCH] Fixes ignoredRuleHashingAttributes space args This should use comma separated values Related https://github.com/Tinder/bazel-diff/issues/198#issuecomment-1868968522 --- cli/src/main/kotlin/com/bazel_diff/cli/GenerateHashesCommand.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/main/kotlin/com/bazel_diff/cli/GenerateHashesCommand.kt b/cli/src/main/kotlin/com/bazel_diff/cli/GenerateHashesCommand.kt index 4985482..08e461b 100644 --- a/cli/src/main/kotlin/com/bazel_diff/cli/GenerateHashesCommand.kt +++ b/cli/src/main/kotlin/com/bazel_diff/cli/GenerateHashesCommand.kt @@ -132,7 +132,7 @@ class GenerateHashesCommand : Callable { names = ["--ignoredRuleHashingAttributes"], description = ["Attributes that should be ignored when hashing rule targets."], scope = CommandLine.ScopeType.INHERIT, - converter = [OptionsConverter::class], + converter = [CommaSeparatedValueConverter::class], ) var ignoredRuleHashingAttributes: Set = emptySet()