From fb33539207f8da1d71880e2dcc26f18be7b326a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nu=C7=9Duu=C9=A5=C7=9Dx=E1=B4=89n=C9=AF?= <50716292+unennhexium@users.noreply.github.com> Date: Thu, 26 Dec 2024 05:37:55 +0300 Subject: [PATCH 1/3] Fix typos in README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3874b7105f..0b203825d3 100644 --- a/README.md +++ b/README.md @@ -1029,7 +1029,7 @@ a := "foo" a := "bar" @foo: - echo $a + echo {{a}} ``` ```console @@ -3009,7 +3009,7 @@ foo: The other is to use a shebang recipe. Shebang recipe bodies are extracted and run as scripts, so a single shell instance will run the whole thing, and thus a -`pwd` on one line will affect later lines, just like a shell script: +`cd` on one line will affect later lines, just like a shell script: ```just foo: From a18b1935be6f7c5ed17fd2d4c0fbeaca8593566e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nu=C7=9Duu=C9=A5=C7=9Dx=E1=B4=89n=C9=AF?= <50716292+unennhexium@users.noreply.github.com> Date: Thu, 26 Dec 2024 05:41:09 +0300 Subject: [PATCH 2/3] Add `quiet` setting in table --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0b203825d3..4d66825d83 100644 --- a/README.md +++ b/README.md @@ -975,6 +975,7 @@ foo: | `fallback` | boolean | `false` | Search `justfile` in parent directory if the first recipe on the command line is not found. | | `ignore-comments` | boolean | `false` | Ignore recipe lines beginning with `#`. | | `positional-arguments` | boolean | `false` | Pass positional arguments. | +| `quiet` | boolean | `false` | Suppress printing recipes' lines before executing. | | `script-interpreter`1.33.0 | `[COMMAND, ARGS…]` | `['sh', '-eu']` | Set command used to invoke recipes with empty `[script]` attribute. | | `shell` | `[COMMAND, ARGS…]` | - | Set command used to invoke recipes and evaluate backticks. | | `tempdir` | string | - | Create temporary directories in `tempdir` instead of the system default temporary directory. | From 610ba278e0e1854e3a34a2d433f58da81e1743cf Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Wed, 25 Dec 2024 19:28:20 -0800 Subject: [PATCH 3/3] Amend --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4d66825d83..85ff190915 100644 --- a/README.md +++ b/README.md @@ -975,7 +975,7 @@ foo: | `fallback` | boolean | `false` | Search `justfile` in parent directory if the first recipe on the command line is not found. | | `ignore-comments` | boolean | `false` | Ignore recipe lines beginning with `#`. | | `positional-arguments` | boolean | `false` | Pass positional arguments. | -| `quiet` | boolean | `false` | Suppress printing recipes' lines before executing. | +| `quiet` | boolean | `false` | Disable echoing recipe lines before executing. | | `script-interpreter`1.33.0 | `[COMMAND, ARGS…]` | `['sh', '-eu']` | Set command used to invoke recipes with empty `[script]` attribute. | | `shell` | `[COMMAND, ARGS…]` | - | Set command used to invoke recipes and evaluate backticks. | | `tempdir` | string | - | Create temporary directories in `tempdir` instead of the system default temporary directory. |