diff --git a/templates/drushrc.php.twig b/templates/drushrc.php.twig index ec6d881f39f6adcd3041200e0a1e0fce6cd1eb2e..eaf3eff4af92202922616a6332f7c575641a7a3f 100644 --- a/templates/drushrc.php.twig +++ b/templates/drushrc.php.twig @@ -2,6 +2,6 @@ $options['structure-tables']['common'] = array('cache', 'cache_*', 'history', 'search_*', 'sessions', 'watchdog'); -$options['shell-aliases']['pull-sql'] = '!drush -y --create-db --structure-tables-key=common sql-sync @live @dev && !drush -y @dev cr && !drush -y @dev dev on'; +$options['shell-aliases']['pull-sql'] = '!drush -y --create-db --structure-tables-key=common sql-sync @live @dev && drush -y @dev cr && drush -y @dev dev on'; $options['shell-aliases']['pull-files'] = '!drush -y rsync @live:%files @dev:%files --mode=rlDzq --chown=www-data:www-data --safe-links --max-size=20M && drush -y rsync @live:%private @dev:%private --mode=rlDzq --chown=www-data:www-data --safe-links --max-size=20M'; $options['shell-aliases']['pull-all'] = $options['shell-aliases']['pull-sql'] . ' && ' . $options['shell-aliases']['pull-files'];