Skip to content

Commit

Permalink
Document --unsorted flag in readme (#672)
Browse files Browse the repository at this point in the history
  • Loading branch information
casey authored Sep 1, 2020
1 parent 551a22b commit c62ff5a
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ A variety of example justfiles can be found in the link:examples[examples direct
=== Listing Available Recipes
Recipes can be listed with `just --list` :
Recipes can be listed in alphabetical order with `just --list`:
```sh
$ just --list
Expand All @@ -244,6 +244,28 @@ $ just --summary
build test deploy lint
```
Pass `--unsorted` to print recipes in the order they appear in the justfile:
```make
test:
echo 'Testing!'
build:
echo 'Building!'
```
```sh
$ just --list --unsorted
Available recipes:
test
build
```
```sh
$ just --summary --unsorted
test build
```
=== Aliases
Aliases allow recipes to be invoked with alternative names:
Expand Down

0 comments on commit c62ff5a

Please sign in to comment.