/ Published in: Bash
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
after upgrade your Mac OS to Snow leopard, you maybe find out that the subversion and ruby or other bundles are not working any more. it thows errors like this 1 /Applications/TextMate.app/Contents/SharedSupport/Support/lib/osx/plist.bundle: dlopen(/Applications/TextMate.app/Contents/SharedSupport/Support/lib/osx/plist.bundle, 9): no suitable image found. Did find: (LoadError) 2 /Applications/TextMate.app/Contents/SharedSupport/Support/lib/osx/plist.bundle: no matching architecture in universal wrapper - /Applications/TextMate.app/Contents/SharedSupport/Support/lib/osx/plist.bundle 3 from /Applications/TextMate.app/Contents/SharedSupport/Support/lib/ui.rb:3 4 ... well, this’s mainyly because the plist.bundle(and keychain.bundle) in your TextMate is not supported in 64bit. simply fix this problem by upgrading these bundles to the lastest version in here. http://svn.textmate.org/trunk/Support/lib/osx or by run 1 cd /Applications/TextMate.app/Contents/SharedSupport/Support/lib/osx/ 2 svn export http://svn.textmate.org/trunk/Support/lib/osx/keychain.bundle 3 svn export http://svn.textmate.org/trunk/Support/lib/osx/plist.bundle