Guest User

Untitled

a guest
Jun 25th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. #! /bin/bash
  2.  
  3. # Go into the library paths and updates git bundles
  4. echo 'Updating Pristine copy in /Library/Application Support/TextMate/ Pristine Copy/Bundles'
  5. find ~/"Library/Application Support/TextMate/Pristine Copy/Bundles" -name .git -execdir git pull --quiet \;
  6. echo 'Updating /Library/Application Support/TextMate/Bundles'
  7. find ~/"Library/Application Support/TextMate/Bundles" -name .git -execdir git pull --quiet \;
  8. echo 'Updating Library/Application Support/TextMate/Pristine Copy/Bundles'
  9. find ~/"Library/Application Support/TextMate/Pristine Copy/Bundles" -maxdepth 2 -name .svn -execdir svn up --quiet \;
  10. echo 'Updating Library/Application Support/TextMate/Bundles'
  11. find ~/"Library/Application Support/TextMate/Bundles" -maxdepth 2 -name .svn -execdir svn up --quiet \;
Add Comment
Please, Sign In to add comment