fixed extract for zip

This commit is contained in:
Hannes
2026-03-10 18:37:02 +01:00
parent fbf80f998e
commit f4ab71c1fc
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ function extract
case 'application/zstd'
tar --zstd -xvf "$archive" -C "$output_dir"
case 'application/zip'
unzip -j "$archive" -d "$output_dir"
unzip "$archive" -d "$output_dir"
case 'application/x-7z-compressed'
7z x "$archive" -o"$output_dir"
case 'application/x-rar' 'application/vnd.rar'