Fix shell session code block

This commit is contained in:
Gabriel Augendre 2023-05-21 11:06:38 +02:00
parent 875502c826
commit a0fc3ced50

View file

@ -125,15 +125,15 @@ def sync_dependencies(ctx: Context) -> None:
Invoke is a sort of Makefile, but written in Python.
```shell
invoke --list # shorter: inv -l
```shell-session
$ invoke --list # shorter: inv -l
Available tasks:
compile-dependencies
sync-dependencies
update-dependencies
inv compile-dependencies
$ inv compile-dependencies
# Runs the commands...
```