mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:28:10 +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)));
|
output_stream = TRY(try_make<Compress::GzipCompressor>(move(output_stream)));
|
||||||
|
|
||||||
if (lzma)
|
if (lzma)
|
||||||
TODO();
|
output_stream = TRY(Compress::LzmaCompressor::create_container(move(output_stream), {}));
|
||||||
|
|
||||||
if (xz)
|
if (xz)
|
||||||
TODO();
|
TODO();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue