From 13fa656f43c2feb9d85882def899eeda968537b9 Mon Sep 17 00:00:00 2001 From: David Anthoff Date: Tue, 14 May 2024 19:31:32 -0700 Subject: [PATCH] Revert "adds some information on which channel is updating." This reverts commit 0a0e4a0836e5f544bfa051ef83809cdefce405cb. --- src/command_update.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/command_update.rs b/src/command_update.rs index 8c6640c3..37081584 100644 --- a/src/command_update.rs +++ b/src/command_update.rs @@ -20,7 +20,6 @@ fn update_channel( let current_version = &config_db.installed_channels.get(channel).ok_or_else(|| anyhow!("Trying to get the installed version for a channel that does not exist in the config database."))?.clone(); - eprintln!("Updating channel: {}", channel); match current_version { JuliaupConfigChannel::SystemChannel { version } => { let should_version = version_db.available_channels.get(channel); @@ -52,8 +51,6 @@ fn update_channel( paths, )?; } - } else { - eprintln!("Already on the latest version, skipping."); } } else if ignore_non_updatable_channel { eprintln!("Skipping update for '{}' channel, it no longer exists in the version database.", channel);