tar: Wire up compressing .tar files with LZMA
This commit is contained in:
parent
df071d8a76
commit
083e61c36b
Notes:
sideshowbarker
2024-07-16 22:22:13 +09:00
Author: https://github.com/timschumi Commit: https://github.com/SerenityOS/serenity/commit/083e61c36b Pull-request: https://github.com/SerenityOS/serenity/pull/18769
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
Reference in a new issue