Update handle_err.rs

This commit is contained in:
Shunsuke Shibayama 2024-11-14 01:54:21 +09:00
parent 6e644dacd9
commit 5bc13dc463
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ fn filter_error(
.input
.path()
.canonicalize()
.is_ok_and(|path| !path.starts_with(root))
.is_ok_and(|path| path.starts_with(root.join(".venv")) || !path.starts_with(root))
})
{
return None;