This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/update_vendors.sh

37 lines
625 B
Bash
Executable File

#!/bin/sh
CURRENT=`pwd`/vendor
# Doctrine ORM
cd $CURRENT/doctrine && git pull
# Doctrine ORM Data Fixtures Extension
cd $CURRENT/doctrine-orm-data-fixtures && git pull
# Doctrine DBAL
cd $CURRENT/doctrine-dbal && git pull
# Doctrine common
cd $CURRENT/doctrine-common && git pull
# Doctrine migrations
cd $CURRENT/doctrine-migrations && git pull
# Doctrine MongoDB
cd $CURRENT/doctrine-mongodb && git pull
# Propel
cd $CURRENT/propel && svn up
# Phing
cd $CURRENT/phing && svn up
# Swiftmailer
cd $CURRENT/swiftmailer && git pull
# Twig
cd $CURRENT/twig && git pull
# Zend Framework
cd $CURRENT/zend && git pull