From 3b9d717ecd61bd2b5c32ec117f38c7d67a109748 Mon Sep 17 00:00:00 2001 From: fxqnlr Date: Sat, 13 May 2023 17:12:07 +0200 Subject: minimally better logging --- src/commands/update.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/commands/update.rs') diff --git a/src/commands/update.rs b/src/commands/update.rs index 2128090..d3a282b 100644 --- a/src/commands/update.rs +++ b/src/commands/update.rs @@ -27,10 +27,10 @@ pub async fn update( for id in mods { let info = mods_get_info(config.clone(), &id)?; - println!(" └{}", info.title); + println!(" ├{}", info.title); if userlist_get_set_version(config.clone(), ¤t_list.id, &id)? { - println!(" └Set version, skipping update"); + println!(" │ └Set version, skipping update"); continue; } @@ -54,7 +54,7 @@ pub async fn update( Err(e) => { if e.to_string() == "Mod: NO_UPDATE_AVAILABLE" { println!( - " └No new version found for the specified minecraft version" + " │ └No new version found for the specified minecraft version" ); } else { return Err(e); -- cgit v1.2.3