Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6ed7d262 authored by Koushik K. Dutta's avatar Koushik K. Dutta Committed by Koushik Dutta
Browse files

fix bug where on OSX files are being generated as 755 instead of 777. this...

fix bug where on OSX files are being generated as 755 instead of 777. this causes issues when detecting symlinks by the update script generator
parent 99c9d0e9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -93,7 +93,7 @@ def MostPopularKey(d, default):
def IsSymlink(info):
  """Return true if the zipfile.ZipInfo object passed in represents a
  symlink."""
  return (info.external_attr >> 16) == 0120777
  return (info.external_attr >> 16) == 0120777 or (info.external_attr >> 16) == 0120755


class Item: