Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed Nov 23, 2024
1 parent 200f975 commit ccb44fa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/global/project/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,8 @@ impl Project {
.map(PathBuf::from)
.map(|dir| dir.join("pixi").join(MANIFEST_DEFAULT_NAME))
.or_else(|| {
dirs::home_dir().map(|dir| dir.join(".config").join("pixi").join(MANIFEST_DEFAULT_NAME))
dirs::home_dir()
.map(|dir| dir.join(".config").join("pixi").join(MANIFEST_DEFAULT_NAME))
})
.filter(|dir| dir.exists())
.or_else(|| {
Expand Down

0 comments on commit ccb44fa

Please sign in to comment.