From e47af4f7d62e7d281900e9fecfe37d8bf41e0ff4 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Fri, 16 Feb 2024 22:11:24 +0100 Subject: [PATCH] main --- __main__.py | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/__main__.py b/__main__.py index 7e4e799..3d7637c 100755 --- a/__main__.py +++ b/__main__.py @@ -1,28 +1,10 @@ #! /usr/bin/env python3 -import subprocess import sys -def bootstrap(): - pass - - -def squash(input_root): - subprocess.call([ - 'mksquashfs', - input_root, - ?, - '-comp', 'zstd', - '-Xcompression-level', str(18), - ]) - - def main(): _, output_root = sys.argv - bootstrap() - squash() - print('ok') if __name__ == '__main__':