mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 09:04:59 +00:00
tar: Wire up compressing .tar files with LZMA
This commit is contained in:
parent
df071d8a76
commit
083e61c36b
1 changed files with 1 additions and 1 deletions
|
@ -235,7 +235,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|||
output_stream = TRY(try_make<Compress::GzipCompressor>(move(output_stream)));
|
||||
|
||||
if (lzma)
|
||||
TODO();
|
||||
output_stream = TRY(Compress::LzmaCompressor::create_container(move(output_stream), {}));
|
||||
|
||||
if (xz)
|
||||
TODO();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue