Skip to content

Commit

Permalink
Merge pull request #70 from symfony-cmf/fix_hhvm
Browse files Browse the repository at this point in the history
do not prepend php scripts with a php to make it easier to overwrite php with hhvm
  • Loading branch information
lsmith77 committed Aug 21, 2014
2 parents e6328eb + 4b1f19e commit aaa3abd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions bin/travis/doctrine_orm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ DIR_NAME=`dirname $0`
CONSOLE_DIR=$DIR_NAME"/.."

# composer install --dev
php $CONSOLE_DIR"/console" doctrine:database:create --env=orm
php $CONSOLE_DIR"/console" doctrine:schema:create --env=orm
php $CONSOLE_DIR"/console" doctrine:phpcr:repository:init
$CONSOLE_DIR"/console" doctrine:database:create --env=orm
$CONSOLE_DIR"/console" doctrine:schema:create --env=orm
$CONSOLE_DIR"/console" doctrine:phpcr:repository:init
4 changes: 2 additions & 2 deletions bin/travis/phpcr_odm_doctrine_dbal.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ DIR_NAME=`dirname $0`
CONSOLE_DIR=$DIR_NAME"/.."

# composer install --dev
php $CONSOLE_DIR"/console" doctrine:phpcr:init:dbal --drop
php $CONSOLE_DIR"/console" doctrine:phpcr:repository:init
$CONSOLE_DIR"/console" doctrine:phpcr:init:dbal --drop
$CONSOLE_DIR"/console" doctrine:phpcr:repository:init

0 comments on commit aaa3abd

Please sign in to comment.