diff options
author | Christian Goetze <cg@lindenlab.com> | 2008-03-28 22:00:17 +0000 |
---|---|---|
committer | Christian Goetze <cg@lindenlab.com> | 2008-03-28 22:00:17 +0000 |
commit | 32e11b2ef5e84bb7ccc985f34691f151afee64fc (patch) | |
tree | d3cc42da1ffdb2cd58d568911428ad008ea0ad1f /indra | |
parent | 069b12a21b7ed65f598ae8f241c7573df1916c42 (diff) |
Have the access permission changing code always return true
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index c5fdab5b7b..71509f50f5 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -497,7 +497,7 @@ class LinuxManifest(ViewerManifest): 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 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 self.run_command("mv %(dst)s %(inst)s" % {'dst':self.get_dst_prefix(),'inst':self.src_path_of(installer_name)}) |