Skip to content

Commit 6bc1deb

Browse files
committed
fix recipe
1 parent e65fba7 commit 6bc1deb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ We provide a platform independent justfile with recipes for all the development
1414
`enum-properties` uses [uv](https://docs.astral.sh/uv) for environment, package and dependency management:
1515

1616
```bash
17-
just install_uv
17+
just install-uv
1818
```
1919

2020
Next, initialize and install the development environment:

justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ default:
1111
# install the uv package manager
1212
[linux]
1313
[macos]
14-
install_uv:
14+
install-uv:
1515
curl -LsSf https://astral.sh/uv/install.sh | sh
1616

1717
# install the uv package manager
1818
[windows]
19-
install_uv:
19+
install-uv:
2020
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
2121

2222
# setup the venv and pre-commit hooks

0 commit comments

Comments
 (0)