We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14995fe commit 1663af5Copy full SHA for 1663af5
python/uv/private/pip_compile.py
@@ -18,7 +18,8 @@ def _run() -> None:
18
19
# Let `uv` know that it was spawned by this Python interpreter
20
env["UV_INTERNAL__PARENT_INTERPRETER"] = sys.executable
21
- args = sys.argv[1:]
+ args = []
22
+ args += sys.argv[1:]
23
24
src_out = args[1] if args[0] == "--src-out" else None
25
if src_out:
0 commit comments