update_vendors.sh 416 B

123456789101112131415161718192021222324252627
  1. #!/bin/sh
  2. CURRENT=`pwd`/vendor
  3. # Doctrine
  4. cd $CURRENT/doctrine && git pull
  5. # Doctrine migrations
  6. cd $CURRENT/doctrine-migrations && git pull
  7. # Doctrine MongoDB
  8. cd $CURRENT/doctrine-mongodb && git pull
  9. # Propel
  10. cd $CURRENT/propel && svn up
  11. # Phing
  12. cd $CURRENT/phing && svn up
  13. # Swiftmailer
  14. cd $CURRENT/swiftmailer && git pull
  15. # Twig
  16. cd $CURRENT/twig && git pull
  17. # Zend Framework
  18. cd $CURRENT/zend && git pull