Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: include uv in path for hook-env #3572

Merged
merged 1 commit into from
Dec 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions src/cli/hook_env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,11 @@ impl HookEnv {
let shell = get_shell(self.shell).expect("no shell provided, use `--shell=zsh`");
miseprint!("{}", hook_env::clear_old_env(&*shell))?;
let mut env = ts.env(&config)?;
let env_path = env.remove(&*PATH_KEY);
env.remove(&*PATH_KEY);
let mut diff = EnvDiff::new(&env::PRISTINE_ENV, env);
let mut patches = diff.to_patches();

let mut paths = config.path_dirs()?.clone();
if let Some(p) = env_path {
paths.extend(split_paths(&p).collect_vec());
}
paths.extend(ts.list_paths()); // load the active runtime paths
let paths = ts.list_final_paths()?;
diff.path.clone_from(&paths); // update __MISE_DIFF with the new paths for the next run

let settings = Settings::try_get()?;
Expand Down
Loading