From 54e3c16606ed2b5706bac66ebecc1b476ace5079 Mon Sep 17 00:00:00 2001 From: Suguru Hirahara Date: Sat, 23 Nov 2024 18:19:31 +0900 Subject: [PATCH] Update docs/just.md: add a common note Signed-off-by: Suguru Hirahara --- docs/just.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/just.md b/docs/just.md index e5293200a..ef0ada4e5 100644 --- a/docs/just.md +++ b/docs/just.md @@ -4,7 +4,7 @@ We have previously used [make](https://www.gnu.org/software/make/) for easily ru In addition, we have added support for running commands via [`just`](https://github.com/casey/just) - a more modern command-runner alternative to `make`. It can be used to invoke `ansible-playbook` commands with less typing. -The `just` utility executes shortcut commands (called as "recipes"), which ultimately run `ansible-galaxy` or [`agru`](https://github.com/etkecc/agru). The targets of the recipes are defined in [`justfile`](../justfile). It defines commands, most of which are not available on our `Makefile`. +The `just` utility executes shortcut commands (called as "recipes"), which ultimately run `ansible-galaxy` or [`agru`](https://github.com/etkecc/agru) (depending on what is available in your system). The targets of the recipes are defined in [`justfile`](../justfile). It defines commands, most of which are not available on our `Makefile`. For some recipes such as `just update`, our `justfile` recommends to install `agru` to speed up the process.