Skip to content

Commit

Permalink
Add quiet setting and fix typos in readme (#2549)
Browse files Browse the repository at this point in the history
  • Loading branch information
unennhexium authored Dec 26, 2024
1 parent a6b0db5 commit b7696e1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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` | Disable echoing recipe lines before executing. |
| `script-interpreter`<sup>1.33.0</sup> | `[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. |
Expand Down Expand Up @@ -1029,7 +1030,7 @@ a := "foo"
a := "bar"
@foo:
echo $a
echo {{a}}
```

```console
Expand Down Expand Up @@ -3009,7 +3010,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:
Expand Down

0 comments on commit b7696e1

Please sign in to comment.