auto_update: Improve error message when `rsync` was not found (#39791)

warrenjokinen created

Reworded the error message when the `rsync` utility could not be found.

Release Notes:

- N/A

Change summary

crates/auto_update/src/auto_update.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

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(())
     }