When I run the TODO bundle I get the following: ----- /Library/Application Support/TextMate/Support/lib/textmate.rb:150: warning: Insecure world writable dir /Library/Application Support/TextMate in PATH, mode 040777 /Library/Application Support/TextMate/Support/lib/textmate.rb:150: warning: Insecure world writable dir /Library/Application Support/TextMate in PATH, mode 040777 /Library/Application Support/TextMate/Support/lib/textmate.rb:150: warning: Insecure world writable dir /Library/Application Support/TextMate in PATH, mode 040777 /Library/Application Support/TextMate/Support/lib/textmate.rb:150: warning: Insecure world writable dir /Library/Application Support/TextMate in PATH, mode 040777 /Library/Application Support/TextMate/Support/lib/textmate.rb:150: warning: Insecure world writable dir /Library/Application Support/TextMate in PATH, mode 040777 /Library/Application -----
I have run chmod -R o-w * in the /Library/Application Support/TextMate folder, but this makes no difference. What have I done wrong?
Thanks,
Christopher
On Fri, Jun 25, 2010 at 13:32, Christopher Brewster cbrewster@gmail.com wrote:
I have run chmod -R o-w * in the /Library/Application Support/TextMate folder, but this makes no difference. What have I done wrong?
You need to run `chmod -R o-w` on the `/Library/Application Support/TextMate` folder itself, not just the items within it, i.e. (with or without sudo, depending on your system) chmod -R o-w "/Library/Application Support/TextMate"
HTH, Martin
On 25 Jun 2010, at 12:39, Martin Kühl wrote:
On Fri, Jun 25, 2010 at 13:32, Christopher Brewster cbrewster@gmail.com wrote:
I have run chmod -R o-w * in the /Library/Application Support/TextMate folder, but this makes no difference. What have I done wrong?
You need to run `chmod -R o-w` on the `/Library/Application Support/TextMate` folder itself, not just the items within it, i.e. (with or without sudo, depending on your system) chmod -R o-w "/Library/Application Support/TextMate"
Thanks, That solved it.
Christopher