mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
c09f6ce73a
This is our current consistency choice. I think ideally we’d make this configurable somehow.
14 lines
380 B
Diff
14 lines
380 B
Diff
diff --git a/cli/tools/installer.rs b/cli/tools/installer.rs
|
|
index a43ec84..99784be 100644
|
|
--- a/cli/tools/installer.rs
|
|
+++ b/cli/tools/installer.rs
|
|
@@ -123,7 +123,7 @@ fn get_installer_root() -> Result<PathBuf, io::Error> {
|
|
format!("${home_env_var} is not defined"),
|
|
)
|
|
})?;
|
|
- home_path.push(".deno");
|
|
+ home_path.push(".local");
|
|
Ok(home_path)
|
|
}
|
|
|