Skip to content

Commit

Permalink
fixed install_vendors.sh script
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Oct 8, 2010
1 parent 3a95917 commit 4f74505
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bin/create_sandbox.sh
@@ -1,7 +1,7 @@
#!/bin/sh

DIR=`php -r "echo realpath(dirname(\\$_SERVER['argv'][0]));"`
VERSION=2_0_PR3
VERSION=2_0_PR4
rm -rf /tmp/sandbox
mkdir /tmp/sandbox
cp -r app /tmp/sandbox/
Expand Down
6 changes: 3 additions & 3 deletions bin/install_vendors.sh
Expand Up @@ -17,19 +17,19 @@ git clone git://github.com/symfony/symfony.git symfony
# Doctrine ORM
git clone git://github.com/doctrine/doctrine2.git doctrine
cd doctrine
git checkout -b v2.0.0-BETA3 2.0.0-BETA3
git checkout -b v2.0.0-BETA4 2.0.0-BETA4
cd $DIR/vendor

# Doctrine DBAL
git clone git://github.com/doctrine/dbal.git doctrine-dbal
cd doctrine-dbal
git checkout -b v2.0.0-BETA3 2.0.0-BETA3
git checkout -b v2.0.0-BETA4 2.0.0-BETA4
cd $DIR/vendor

# Doctrine Common
git clone git://github.com/doctrine/common.git doctrine-common
cd doctrine-common
git checkout -b v2.0.0-BETA4 2.0.0-BETA4
git checkout -b v2.0.0-RC1 2.0.0-RC1
cd $DIR/vendor

# Doctrine migrations
Expand Down

0 comments on commit 4f74505

Please sign in to comment.