Fix textmate bundles after snow leopard upgrade


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. 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
  2.  
  3. 1
  4. /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)
  5. 2
  6. /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
  7. 3
  8. from /Applications/TextMate.app/Contents/SharedSupport/Support/lib/ui.rb:3
  9. 4
  10. ...
  11. 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
  12.  
  13. or by run
  14.  
  15. 1
  16. cd /Applications/TextMate.app/Contents/SharedSupport/Support/lib/osx/
  17. 2
  18. svn export http://svn.textmate.org/trunk/Support/lib/osx/keychain.bundle
  19. 3
  20. svn export http://svn.textmate.org/trunk/Support/lib/osx/plist.bundle

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.