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
This commit is contained in:
warrenjokinen
2025-10-10 23:44:32 +02:00
committed by GitHub
parent d6becab3be
commit 65a38a27a9
+1 -1
View File
@@ -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(())
}