From 551c344a48cf998cff521401198d1b8daa01c0a8 Mon Sep 17 00:00:00 2001 From: James Wainwright Date: Wed, 17 Jul 2024 13:01:48 +0100 Subject: [PATCH] Fix bzlmod example in README Signed-off-by: James Wainwright --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5352e84..8abb409 100644 --- a/README.md +++ b/README.md @@ -26,10 +26,11 @@ lowrisc_misc_linters_pip_dependencies() If using `bzlmod`, instead add the following to `MODULE.bazel`: ```bazel -bazel_dep("lowrisc_misc_linters") +bazel_dep(name = "lowrisc_misc_linters") git_override( - module_name = "lowrisc_misc_linters", - remote = "https://github.com/lowRISC/misc-linters", + module_name = "lowrisc_misc_linters", + remote = "https://github.com/lowRISC/misc-linters", + commit = "", ) ```