From 7c4cd013ad818d178e56f2375dcdde916743463f Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Tue, 16 Dec 2025 11:45:36 +0100 Subject: [PATCH] Remove "creating archive" output --- src/uu/tar/src/operations/create.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/uu/tar/src/operations/create.rs b/src/uu/tar/src/operations/create.rs index 4b296f8..f01ebe6 100644 --- a/src/uu/tar/src/operations/create.rs +++ b/src/uu/tar/src/operations/create.rs @@ -37,10 +37,6 @@ pub fn create_archive(archive_path: &Path, files: &[&Path], verbose: bool) -> UR // Create Builder instance let mut builder = Builder::new(file); - if verbose { - println!("Creating archive: {}", archive_path.display()); - } - // Add each file or directory to the archive for &path in files { // Check if path exists