From 083e61c36b07c87018fc3853c2449e17fcdfebd5 Mon Sep 17 00:00:00 2001 From: Tim Schumacher Date: Sun, 14 May 2023 03:20:01 +0200 Subject: [PATCH] tar: Wire up compressing .tar files with LZMA --- Userland/Utilities/tar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Utilities/tar.cpp b/Userland/Utilities/tar.cpp index e5e8fdc192b..15f9962a026 100644 --- a/Userland/Utilities/tar.cpp +++ b/Userland/Utilities/tar.cpp @@ -235,7 +235,7 @@ ErrorOr serenity_main(Main::Arguments arguments) output_stream = TRY(try_make(move(output_stream))); if (lzma) - TODO(); + output_stream = TRY(Compress::LzmaCompressor::create_container(move(output_stream), {})); if (xz) TODO();