When I hit Command R in a .py file, I get
warning: Insecure world writable dir /Users/coldrick/Library/Application Support/TextMate/Managed/Bundles in PATH, mode 040777
Why?
Best regards, David
On 27 Feb 2014, at 13:31, David Coldrick wrote:
warning: Insecure world writable dir /Users/coldrick/Library/Application Support/TextMate/Managed/Bundles in PATH, mode 040777
This error is from ruby. It says that the above folder is in your PATH and that everyone can write to it, which is a theoretically insecure setup.
What you need to do is run the following in a terminal:
chmod o-w "$HOME/Library/Application Support/TextMate/Managed/Bundles/Bundle Support.tmbundle/Support/shared/bin"
I changed the folder here because I think what you reported is a truncated version of the full path.
Hi Allan,
A couple of things:
* why am I getting a ruby error when I'm running a python script, and * the message is exactly as I received it from TextMate.
I performed the chmod as you suggested, but I still get the same error.
Regards, David
Allan Odgaard mailto:mailinglist@textmate.org 28 February 2014 2:56 pm On 27 Feb 2014, at 13:31, David Coldrick wrote:
This error is from ruby. It says that the above folder is in your PATH and that everyone can write to it, which is a theoretically insecure setup.
What you need to do is run the following in a terminal:
chmod o-w "$HOME/Library/Application Support/TextMate/Managed/Bundles/Bundle Support.tmbundle/Support/shared/bin"
I changed the folder here because I think what you reported is a truncated version of the full path.
textmate mailing list textmate@lists.macromates.com http://lists.macromates.com/listinfo/textmate David Coldrick mailto:coldrick@gmail.com 27 February 2014 5:31 pm When I hit Command R in a .py file, I get
warning: Insecure world writable dir /Users/coldrick/Library/Application Support/TextMate/Managed/Bundles in PATH, mode 040777
Why?
Best regards, David
On 1 Mar 2014, at 12:51, David Coldrick wrote:
- why am I getting a ruby error when I'm running a python script, and
Because the python script runner is written in ruby. The warning is from the ruby interpreter. If you google the warning, you should find that there are already tens of thousands of people who have tried to explain the issue :)
- the message is exactly as I received it from TextMate.
I performed the chmod as you suggested, but I still get the same error.
Use the exact path given in the error message.