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 2494deb commit 8985c44Copy full SHA for 8985c44
py/tools/venv_shim/src/main.rs
@@ -15,8 +15,9 @@ fn find_venv_root() -> miette::Result<(PathBuf, PathBuf)> {
15
let cfg = root.join(PYVENV);
16
if cfg.exists() {
17
return Ok((root, cfg));
18
+ } else {
19
+ eprintln!("Warning: $VIRTUAL_ENV is set but seems to be invalid; ignoring")
20
}
- // FIXME: Else warn that the VIRTUAL_ENV is invalid before continuing
21
22
23
if let Some(this) = args().next() {
0 commit comments