about summary refs log tree commit diff stats
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rwxr-xr-xmodules/by-name/lf/lf/commands/scripts/archive_decompress.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/by-name/lf/lf/commands/scripts/archive_decompress.sh b/modules/by-name/lf/lf/commands/scripts/archive_decompress.sh
index 11d634b1..6cae62a2 100755
--- a/modules/by-name/lf/lf/commands/scripts/archive_decompress.sh
+++ b/modules/by-name/lf/lf/commands/scripts/archive_decompress.sh
@@ -29,5 +29,8 @@ echo "$fx" | while read -r file; do
     *.7z) 7z x "$file" ;;
     *) die "'$file' is not a supported file for unarchiving." ;;
     esac
+
+    lf_cmd echo "decompression of '$file' done."
 done
+
 # vim: ft=sh