mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-06-07 19:01:54 -07:00
Merge branch 'DarkFlippers:dev' into clock_on_desktop
This commit is contained in:
@@ -271,7 +271,13 @@ class Main(App):
|
|||||||
self.note_dist_component(
|
self.note_dist_component(
|
||||||
"update", "tgz", self.get_dist_path(bundle_tgz)
|
"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
|
return bundle_result
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user