ruff/format
This commit is contained in:
parent
7d0ffb8a65
commit
0a035f2cd6
5 changed files with 35 additions and 15 deletions
|
@ -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),
|
||||
]
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue