From e39dd72a42115078eba6fe1956d0d82b3308a437 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Marcos=20P=2E=20Bezerra?= Date: Mon, 18 Nov 2024 00:03:36 -0300 Subject: [PATCH] chore: improve message after moving file --- src/commands/decompress.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/decompress.rs b/src/commands/decompress.rs index a16d892..7e3f617 100644 --- a/src/commands/decompress.rs +++ b/src/commands/decompress.rs @@ -283,7 +283,7 @@ fn smart_unpack( // Rename the temporary directory to the archive name, which is output_file_path fs::rename(&previous_path, &new_path)?; info_accessible(format!( - "Successfully moved {} to {}.", + "Successfully moved \"{}\" to \"{}\".", nice_directory_display(&previous_path), nice_directory_display(&new_path), ));