mirror of https://github.com/astral-sh/uv
Fix `UV_FIND_LINKS` delimiter to split on commas (#10477)
#8061 incorrectly claims to change the delimiter for `UV_FIND_LINKS` from spaces to commas. In reality, it prevents `UV_FIND_LINKS` from being split. This commit fixes that.
This commit is contained in:
parent
b3d7beb1a0
commit
2982c2074c
|
|
@ -4593,6 +4593,7 @@ pub struct IndexArgs {
|
||||||
long,
|
long,
|
||||||
short,
|
short,
|
||||||
env = EnvVars::UV_FIND_LINKS,
|
env = EnvVars::UV_FIND_LINKS,
|
||||||
|
value_delimiter = ',',
|
||||||
value_parser = parse_find_links,
|
value_parser = parse_find_links,
|
||||||
help_heading = "Index options"
|
help_heading = "Index options"
|
||||||
)]
|
)]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue