fix: point to the right path when fresh installing engines

This commit is contained in:
daimond113 2025-02-08 00:29:55 +01:00
parent 7f21131415
commit 4d39ddae04
No known key found for this signature in database
GPG key ID: 640DC95EC1190354
2 changed files with 6 additions and 2 deletions

View file

@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
### Fixed
- Fix `self-upgrade` using the wrong path when doing a fresh download by @daimond113
## [0.6.0-rc.2] - 2025-02-07
### Fixed
- Colour deprecate output to match yank output by @daimond113

View file

@ -167,7 +167,7 @@ pub async fn get_or_download_engine(
.with_extension(std::env::consts::EXE_EXTENSION));
}
run_with_reporter(|_, root_progress, reporter| async {
let path = run_with_reporter(|_, root_progress, reporter| async {
let root_progress = root_progress;
let reporter = reporter;
@ -221,7 +221,7 @@ pub async fn get_or_download_engine(
.await
.context("failed to write to file")?;
Ok::<_, anyhow::Error>(())
Ok::<_, anyhow::Error>(path)
})
.await?;