setup-svn.py permissions
David Ayers <[email protected]> Mon, 01 Dec 2008 15:25:03 +0000
| Newsgroups | gmane.comp.gnu.enterprise.devel |
|---|---|
| Message-ID | <[email protected]> |
Hello Folks, I needed this patch to insure that I can actually execute the scripts installed by setup-svn.py. Cheers, David _______________________________________________ Gnue-dev mailing list [email protected] http://lists.gnu.org/mailman/listinfo/gnue-dev
gnue.patch
(text/x-patch, 513 B)
Index: setup-svn.py
===================================================================
--- setup-svn.py (Revision 9900)
+++ setup-svn.py (Arbeitskopie)
@@ -79,7 +79,7 @@
rootCommands.append ('rm -f %s/%s' % (BINDIR, script))
rootCommands.append ('ln -s %s %s/%s' % \
(dest, BINDIR, script))
- rootCommands.append ('chmod o+x %s' % dest)
+ rootCommands.append ('chmod go+rx %s' % dest)
except IOError:
print "Unable to create. Do you have this package checked out?"