Fix cargo fmt formatting in version.rs
This commit is contained in:
parent
468528de66
commit
4a33be4f23
1 changed files with 4 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue