diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a56b89..2e0eea8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/cli/version.rs b/src/cli/version.rs index 9cfb93c..ebc8b17 100644 --- a/src/cli/version.rs +++ b/src/cli/version.rs @@ -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?;