Skip to content

Commit

Permalink
fix(rules|lint): Use short_path (#79)
Browse files Browse the repository at this point in the history
* Use short_path

* Bump patch version

---------

Co-authored-by: Daniel García <[email protected]>
  • Loading branch information
CarlosGamezF and danigar authored Dec 9, 2024
1 parent 7ea9602 commit 11cea95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

module(name = "masorange_rules_helm", version = "1.3.0", bazel_compatibility = [">=6.0.0"])
module(name = "masorange_rules_helm", version = "1.3.1", bazel_compatibility = [">=6.0.0"])

bazel_dep(name = "aspect_bazel_lib", version = "2.3.0")

Expand Down
2 changes: 1 addition & 1 deletion helm/private/helm_lint_test.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def _helm_lint_test_impl(ctx):
output = ctx.outputs.executable,
content = """
{helm} lint {chart}
""".format(helm=helm_bin.path, chart=chart_targz.short_path),
""".format(helm=helm_bin.short_path, chart=chart_targz.short_path),
)

return [
Expand Down

0 comments on commit 11cea95

Please sign in to comment.