meson: remove slash in path (#33292)

This commit is contained in:
Adam J. Stewart 2022-10-13 20:26:51 -05:00 committed by GitHub
parent 7da303334e
commit d5ebb55338
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -75,7 +75,7 @@ class MesonPackage(PackageBase):
@property
def archive_files(self):
"""Files to archive for packages based on Meson"""
return [os.path.join(self.build_directory, "meson-logs/meson-log.txt")]
return [os.path.join(self.build_directory, "meson-logs", "meson-log.txt")]
@property
def root_mesonlists_dir(self):