Merge branch 'ofw-dev' into dev

This commit is contained in:
MX 2023-05-22 14:49:53 +03:00
commit 6779eab44e
No known key found for this signature in database
GPG key ID: 7CCC66B7DBDD1C83

View file

@ -271,7 +271,13 @@ class Main(App):
self.note_dist_component(
"update", "tgz", self.get_dist_path(bundle_tgz)
)
tar.add(bundle_dir, arcname=bundle_dir_name)
# Strip uid and gid in case of overflow
def tar_filter(tarinfo):
tarinfo.uid = tarinfo.gid = 0
return tarinfo
tar.add(bundle_dir, arcname=bundle_dir_name, filter=tar_filter)
return bundle_result