From 65a38a27a91a3d7e62eeb3e368accee26e201d85 Mon Sep 17 00:00:00 2001 From: warrenjokinen <110791849+warrenjokinen@users.noreply.github.com> Date: Fri, 10 Oct 2025 15:44:32 -0600 Subject: [PATCH] auto_update: Improve error message when `rsync` was not found (#39791) Reworded the error message when the `rsync` utility could not be found. Release Notes: - N/A --- crates/auto_update/src/auto_update.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/auto_update/src/auto_update.rs b/crates/auto_update/src/auto_update.rs index e16b82e6c74f29b62d3bd9e9ec2535d8bcf965f7..9f93dd27900e4b90de8c6d61d41b3b6c287eaaf0 100644 --- a/crates/auto_update/src/auto_update.rs +++ b/crates/auto_update/src/auto_update.rs @@ -649,7 +649,7 @@ impl AutoUpdater { #[cfg(not(target_os = "windows"))] anyhow::ensure!( which::which("rsync").is_ok(), - "Aborting. Could not find rsync which is required for auto-updates." + "Could not auto-update because the required rsync utility was not found." ); Ok(()) }