From e108e5b77807e03be10071518f412397ea22d38e 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 a16d8928..7e3f6179 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), ));