Skip to content
Snippets Groups Projects
Commit 32e11b2e authored by Christian Goetze's avatar Christian Goetze
Browse files

Have the access permission changing code always return true

parent 069b12a2
No related branches found
No related tags found
No related merge requests found
...@@ -497,7 +497,7 @@ def package_finish(self): ...@@ -497,7 +497,7 @@ def package_finish(self):
find %(dst)s -type f -perm 0500 | xargs chmod 0555; find %(dst)s -type f -perm 0500 | xargs chmod 0555;
find %(dst)s -type f -perm 0600 | xargs chmod 0644; find %(dst)s -type f -perm 0600 | xargs chmod 0644;
find %(dst)s -type f -perm 0400 | xargs chmod 0444; find %(dst)s -type f -perm 0400 | xargs chmod 0444;
""" % {'dst':self.get_dst_prefix() }) true""" % {'dst':self.get_dst_prefix() })
# temporarily move directory tree so that it has the right name in the tarfile # temporarily move directory tree so that it has the right name in the tarfile
self.run_command("mv %(dst)s %(inst)s" % {'dst':self.get_dst_prefix(),'inst':self.src_path_of(installer_name)}) self.run_command("mv %(dst)s %(inst)s" % {'dst':self.get_dst_prefix(),'inst':self.src_path_of(installer_name)})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment