From 141e669ebc24e5558b3cda5058de9724df8d0561 Mon Sep 17 00:00:00 2001 From: Pavel Zwerschke Date: Mon, 2 Oct 2023 10:48:47 +0200 Subject: [PATCH] docs: use quotes in cli (#367) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Otherwise this would get piped into a file called `=1.8` 😅 --- docs/cli.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/cli.mdx b/docs/cli.mdx index 9497f4a3c..2cfbbcfa8 100644 --- a/docs/cli.mdx +++ b/docs/cli.mdx @@ -43,10 +43,10 @@ It will only add if the package with its version constraint is able to work with ```shell pixi add numpy -pixi add numpy pandas pytorch>=1.8 +pixi add numpy pandas "pytorch>=1.8" pixi add "numpy>=1.22,<1.24" pixi add --manifest-path ~/myproject/pixi.toml numpy -pixi add --host python>=3.9.0 +pixi add --host "python>=3.9.0" pixi add --build cmake pixi add --platform osx-64 --build clang ```