ruff/format

This commit is contained in:
Marc Beninca 2024-06-12 14:46:34 +02:00
parent 7d0ffb8a65
commit 0a035f2cd6
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F
5 changed files with 35 additions and 15 deletions

View file

@ -6,10 +6,14 @@ rwx.cmd.need("mksquashfs")
def mksquashfs(input_root: str, output_file: str):
ps.run([
"mksquashfs",
input_root,
output_file,
"-comp", "zstd",
"-Xcompression-level", str(18),
])
ps.run(
[
"mksquashfs",
input_root,
output_file,
"-comp",
"zstd",
"-Xcompression-level",
str(18),
]
)