rules_shell
v0.4.0
published 3 weeks ago
14 stars
5 forks
4 watchers
Apache License 2.0
public
1 assets
2,425,703 downloads
22 KB
Compatability level unknown
PhFEJKXH5P1D4BM8xuzf5U5Fror/oU+t2DnymQFCQEM=
v0.4.0
January 30, 2025

Using Bzlmod with Bazel 6 or greater

  1. (Bazel 6 only) Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "rules_shell", version = "0.4.0")

Using WORKSPACE

Paste this snippet into your WORKSPACE.bazel file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_shell",
    sha256 = "3e114424a5c7e4fd43e0133cc6ecdfe54e45ae8affa14fadd839f29901424043",
    strip_prefix = "rules_shell-0.4.0",
    url = "https://github.com/bazelbuild/rules_shell/releases/download/v0.4.0/rules_shell-v0.4.0.tar.gz",
)

load("@rules_shell//shell:repositories.bzl", "rules_shell_dependencies", "rules_shell_toolchains")
rules_shell_dependencies()
rules_shell_toolchains()

What's Changed

Full Changelog: https://github.com/bazelbuild/rules_shell/compare/v0.3.0...v0.4.0

Deps:
Assets:

rules_shell

This repository contains the Bazel ruleset for shell scripts.