lint/squashfs
This commit is contained in:
parent
ce3629a776
commit
f7c1d90dfd
1 changed files with 4 additions and 1 deletions
|
@ -1,3 +1,5 @@
|
|||
"""Wrap SquashFS commands."""
|
||||
|
||||
import ps
|
||||
|
||||
import rwx.cmd
|
||||
|
@ -5,7 +7,8 @@ import rwx.cmd
|
|||
rwx.cmd.need("mksquashfs")
|
||||
|
||||
|
||||
def mksquashfs(input_root: str, output_file: str):
|
||||
def mksquashfs(input_root: str, output_file: str) -> None:
|
||||
"""Make a SquashFS bootable image file."""
|
||||
ps.run(
|
||||
[
|
||||
"mksquashfs",
|
||||
|
|
Loading…
Reference in a new issue