komlenic / drubs

A command-line tool tool for building, deploying, and managing Drupal sites across multiple servers and environments.
http://drubs.org
GNU General Public License v2.0
0 stars 0 forks source link

Add ability to specify drush make options during install and update actions #21

Open komlenic opened 8 years ago

komlenic commented 8 years ago

It may be a good idea to allow install and update actions to accept any of the available options that drush make provides, perhaps in a generic "options" named parameter. Something like:

drubs install <node> --make-options="--no-patch-txt --no-gitinfofile --concurrency=2"

The above example may suffice, although we may need to ensure that drush make options that accept arguments can use single quotes, to avoid problems with escaping. Any make options that are currently set by default in the drubs install or drubs update actions, should probably be able to be overridden if the same options are supplied in the executed command. This allows for typical or sane defaults, and flexibility for other use cases.