Fix cargo fmt formatting in version.rs

This commit is contained in:
Graham McIntire 2026-01-14 16:28:40 -06:00
parent 468528de66
commit 4a33be4f23
No known key found for this signature in database

View file

@ -24,7 +24,10 @@ pub fn check_for_updates() {
match check_docker_hub() {
Ok(Some(latest_version)) => {
if latest_version != CURRENT_VERSION {
warn!("⚠️ Newer version available: {} (current: {})", latest_version, CURRENT_VERSION);
warn!(
"⚠️ Newer version available: {} (current: {})",
latest_version, CURRENT_VERSION
);
warn!(" Update with: docker pull {}:latest", DOCKER_IMAGE);
} else {
info!("✓ Running latest version ({})", CURRENT_VERSION);