You're right, Jon. That was a copy/paste flaw in my email. What's actually running includes osascript -e 'tell app "TextMate" to reload bundles' as you suggested. Thanks for catching my error. Good eye.<br><br>Oh, BTW. The script worked this morning. Apparently access to the rails bundle was down. It's a yo-yo world sometimes.
<br><br><div><span class="gmail_quote">On 9/2/06, <b class="gmail_sendername">Jon Evans</b> <<a href="mailto:jon.evans@pobox.com">jon.evans@pobox.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi Lewis,<br><br>On Sat, 02 Sep 2006 01:11:39 +0100, Lewis Overton <<a href="mailto:akakie@gmail.com">akakie@gmail.com</a>> wrote:<br><br><br>> The script is<br>><br>> #!/bin/sh<br>> cd /Library/Application\ Support/TextMate/
<br>> /usr/local/bin/svn up<br>> osascript -e '<br>><br>> and has been working for months.<br><br>Well, it's broken now. :)  The last line is broken.  The -e flag is for<br>passing a command to osascript, but you haven't stated what the command
<br>is.  The fact that you haven't closed the string with another "'" means<br>that it will sit there waiting for you to tell it what command to run.<br><br>Go to the command prompt, type "osascript -e '" and press return, you'll
<br>see it just waits for you to give it a command (it prompts you for it with<br>a '> ' prompt). (hit ctrl-c to break).<br><br>I suspect at some point your script file got damaged... maybe you want<br>this:<br><br>osascript -e 'tell app "TextMate" to reload bundles'
<br><br>(found on <a href="http://macromates.com/textmate/manual/bundles">http://macromates.com/textmate/manual/bundles</a> )<br><br>Jon</blockquote></div><br>