mypy/squashfs

This commit is contained in:
Marc Beninca 2024-09-13 23:57:35 +02:00
parent 378a212786
commit 51b4f0f5f2
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -8,13 +8,11 @@ cmd.need("mksquashfs")
def mksquashfs(input_root: str, output_file: str) -> None:
"""Make a SquashFS bootable image file."""
ps.run(
[
"mksquashfs",
input_root,
output_file,
"-comp",
"zstd",
"-Xcompression-level",
str(18),
]
"mksquashfs",
input_root,
output_file,
"-comp",
"zstd",
"-Xcompression-level",
str(18),
)