pantry/projects/deno.land/default_bindir.diff
Max Howell c09f6ce73a
deno install to ~/.local/bin (not ~/.deno/bin)
This is our current consistency choice. I think ideally we’d make this configurable somehow.
2023-03-07 14:38:38 -05:00

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)
}