Fix indentation error in BuildSrc
Some checks failed
CodeQL / Analyze (push) Has been cancelled

This commit is contained in:
Janek Bevendorff 2026-03-10 02:05:31 +01:00 committed by Janek Bevendorff
parent 5b5ab5334a
commit 36a26308d0

View file

@ -968,11 +968,11 @@ class BuildSrc(Command):
tf.add(fver, Path(prefix) / fver.name)
tf.add(frev, Path(prefix) / frev.name)
logger.info('Compressing source tarball...')
tmp_comp = tmp_export.with_suffix('.tar.xz')
with lzma.open(tmp_comp, 'wb', preset=6) as f:
f.write(tmp_export.read_bytes())
tmp_comp.rename(output_file)
logger.info('Compressing source tarball...')
tmp_comp = tmp_export.with_suffix('.tar.xz')
with lzma.open(tmp_comp, 'wb', preset=6) as f:
f.write(tmp_export.read_bytes())
tmp_comp.rename(output_file)
class Notarize(Command):