Fix indentation error in BuildSrc

This commit is contained in:
Janek Bevendorff 2026-03-10 02:05:31 +01:00
parent 8acebb4714
commit aa65d38c54
No known key found for this signature in database
GPG key ID: 2CF41D2AA8438F99

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):