Skip to content

Commit 8a1611a

Browse files
committed
format code
1 parent 096cea9 commit 8a1611a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

example/repackage/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ load("@bazel_tools//tools/build_rules:test_rules.bzl", "rule_test")
44
helm_chart(
55
name = "chart",
66
srcs = ["@redis//:srcs"],
7+
values_files = ["values.yaml"],
78
values_json = json.encode({
89
"image": {
910
"tag": "some-tag",
1011
},
1112
}),
12-
values_files = ["values.yaml"],
1313
)
1414

1515
rule_test(

helm/toolchain.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def _helm_toolchain_impl(ctx):
3636
template_variables = platform_common.TemplateVariableInfo({
3737
"HELM_BIN": target_tool_path,
3838
# Variable to use with disabled legacy_external_runfiles
39-
"HELM_RUNFILES_BIN": target_tool_path.replace("external/", "../", 1)
39+
"HELM_RUNFILES_BIN": target_tool_path.replace("external/", "../", 1),
4040
})
4141
default = DefaultInfo(
4242
files = depset(tool_files),

0 commit comments

Comments
 (0)