mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-04-05 03:10:57 +01:00
fix: point to the right path when fresh installing engines
This commit is contained in:
parent
7f21131415
commit
4d39ddae04
2 changed files with 6 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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?;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue