From 070d0e4f60e616dee62815c6f8a4584532d7a2fb Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Wed, 15 May 2024 16:22:17 +0200 Subject: [PATCH] fix(docs): Correct typos with `--no-lockfile-update`. (#1396) --- docs/reference/cli.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/reference/cli.md b/docs/reference/cli.md index ce276a16c..6e968b01a 100644 --- a/docs/reference/cli.md +++ b/docs/reference/cli.md @@ -72,7 +72,7 @@ These dependencies will be read by pixi as if they had been added to the pixi `p Parses dependencies as [PEP508](https://peps.python.org/pep-0508/) requirements, supporting extras and versions. See [configuration](configuration.md) for details. - `--no-install`: Don't install the package to the environment, only add the package to the lock-file. -- `--no-lock file-update`: Don't update the lock-file, implies the `--no-install` flag. +- `--no-lockfile-update`: Don't update the lock-file, implies the `--no-install` flag. - `--platform (-p)`: The platform for which the dependency should be added. (Allowed to be used more than once) - `--feature (-f)`: The feature for which the dependency should be added. @@ -89,7 +89,7 @@ pixi add --pypi "exchangelib @ git+https://github.com/ecederstrand/exchangelib" pixi add --pypi "project @ file:///absolute/path/to/project" pixi add --platform osx-64 --build clang pixi add --no-install numpy -pixi add --no-lock file-update numpy +pixi add --no-lockfile-update numpy pixi add --feature featurex numpy ```