From 5aeed2561723dd8099054a61c47f942bb9b3829b Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Sat, 23 Oct 2021 21:22:17 +0300 Subject: Remove temp files that the macOS installer builder leaves hanging. --- packaging/createpkg.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packaging/createpkg.py b/packaging/createpkg.py index 793d4bf..533b3b9 100755 --- a/packaging/createpkg.py +++ b/packaging/createpkg.py @@ -105,6 +105,11 @@ class PkgGenerator: with open(self.distribution_file, 'w') as open_file: open_file.write(doc.toprettyxml()) + def remove_tempfiles(self): + shutil.rmtree('macpkg') + os.unlink('meson-distribution.xml') + os.unlink('meson.pkg') + os.unlink('meson.spec') if __name__ == '__main__': if not os.path.exists('meson.py'): @@ -114,3 +119,4 @@ if __name__ == '__main__': pg = PkgGenerator() pg.build_dist() pg.build_package() + pg.remove_tempfiles() -- cgit v1.1