mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-06 16:19:23 +00:00
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: 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)));
|
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