Skip to content

Commit

Permalink
Install Python to toolchains directory (#782)
Browse files Browse the repository at this point in the history
  • Loading branch information
cnpryer authored Oct 21, 2023
1 parent 0a48de0 commit b2510ac
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/huak_python_manager/src/install.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ pub(crate) fn install_to_home(strategy: &Strategy) -> Result<(), Error> {
let tmp_path = tmp_dir.path().join(tmp_name);
let target_dir = huak_home_dir()
.context("requested huak's home directory")?
.join("bin");
.join("toolchains")
.join(format!("huak-{}-{}", release.kind, release.version));

download_release(&release, &tmp_path)?;

Expand Down

0 comments on commit b2510ac

Please sign in to comment.