play! bundle for textmate is giving me errors
I'm trying to configure textmate with Play! and I开发者_Python百科 keep getting this error when I use the model shortcut
/Users/bennett/Library/Application Support/TextMate/Pristine Copy/Bundles/Play!.tmbundle/Support/bin/model.py: Permission denied
Can anyone make heads or tails of this? some of the other short cuts work. Just not model or class.
I solved it as following:
chmod -R +x /Users/**YOURUSERNAMEHERE**/Library/Application Support/TextMate/Pristine Copy/Bundles/Play!.tmbundle/Support/bin
Just escape the special chars:
chmod +x /Users/<username>/Library/Application\ Support/TextMate/Pristine\ Copy/Bundles/Play\!.tmbundle/Support/bin/*.py
If that can help I had the same issue and fixed it by :
- Renaming
Play!.tmbundle
toPlay!.zip
(within/Users/xxx/Library/Application Support/TextMate/Pristine Copy/Bundles/
) - Adding the execution rights (744) to the python scripts :
Support/bin/*.py
- Renaming back
Play!.zip
toPlay!.tmbundle
it seams to be a bug. I recommend you to create a ticket here : http://play.lighthouseapp.com/dashboard
精彩评论