Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use space as delimiter for
UV_EXTRA_INDEX_URL
(#2140)
## Summary I was looking at something unrelated and saw this in the Clap docs. Closes #1702. ## Test Plan ```shell ❯ UV_EXTRA_INDEX_URL="https://google.com https://foo.com" cargo run pip compile - Finished dev [unoptimized + debuginfo] target(s) in 0.14s Running `target/debug/uv pip compile -` index: None extra_index_url: [Url(VerbatimUrl { url: Url { scheme: "https", cannot_be_a_base: false, username: "", password: None, host: Some(Domain("google.com")), port: None, path: "/", query: None, fragment: None }, given: Some("https://google.com") }), Url(VerbatimUrl { url: Url { scheme: "https", cannot_be_a_base: false, username: "", password: None, host: Some(Domain("foo.com")), port: None, path: "/", query: None, fragment: None }, given: Some("https://foo.com") })] ```
- Loading branch information