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

Commit 6f53bfc8 authored by Koushik K. Dutta's avatar Koushik K. Dutta Committed by Gerrit Code Review
Browse files

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

Merge "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" into gingerbread
parents 7066907b 6ed7d262
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: