Fix reference to uv run in uv tree CLI (#5216)

This commit is contained in:
Charlie Marsh
2024-07-19 09:30:40 -04:00
committed by GitHub
parent 729148dac9
commit 40b962e6bb
2 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ pub(crate) async fn tree(
printer: Printer,
) -> Result<ExitStatus> {
if preview.is_disabled() {
warn_user_once!("`uv run` is experimental and may change without warning.");
warn_user_once!("`uv tree` is experimental and may change without warning.");
}
// Find the project requirements.
+5 -5
View File
@@ -38,7 +38,7 @@ fn nested_dependencies() -> Result<()> {
└── threadpoolctl v3.4.0
----- stderr -----
warning: `uv run` is experimental and may change without warning.
warning: `uv tree` is experimental and may change without warning.
Resolved 6 packages in [TIME]
"###
);
@@ -84,7 +84,7 @@ fn invert() -> Result<()> {
(*) Package tree already displayed
----- stderr -----
warning: `uv run` is experimental and may change without warning.
warning: `uv tree` is experimental and may change without warning.
Resolved 6 packages in [TIME]
"###
);
@@ -107,7 +107,7 @@ fn invert() -> Result<()> {
└── project v0.1.0
----- stderr -----
warning: `uv run` is experimental and may change without warning.
warning: `uv tree` is experimental and may change without warning.
Resolved 6 packages in [TIME]
"###
);
@@ -141,7 +141,7 @@ fn frozen() -> Result<()> {
└── sniffio v1.3.1
----- stderr -----
warning: `uv run` is experimental and may change without warning.
warning: `uv tree` is experimental and may change without warning.
Resolved 4 packages in [TIME]
"###
);
@@ -174,7 +174,7 @@ fn frozen() -> Result<()> {
└── sniffio v1.3.1
----- stderr -----
warning: `uv run` is experimental and may change without warning.
warning: `uv tree` is experimental and may change without warning.
"###
);