X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=vendor%2Fdrush%2Fdrush%2Fexamples%2Fexample.drushrc.php;fp=vendor%2Fdrush%2Fdrush%2Fexamples%2Fexample.drushrc.php;h=9d54ca8f98efc282f59c7b32e8744d289eba51ef;hb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;hp=0000000000000000000000000000000000000000;hpb=57c063afa3f66b07c4bbddc2d6129a96d90f0aad;p=yaffs-website diff --git a/vendor/drush/drush/examples/example.drushrc.php b/vendor/drush/drush/examples/example.drushrc.php new file mode 100644 index 000000000..9d54ca8f9 --- /dev/null +++ b/vendor/drush/drush/examples/example.drushrc.php @@ -0,0 +1,300 @@ + TRUE); + +// Prevent drush ssh command from adding a cd to Drupal root before provided command. +# $command_specific['ssh'] = array('cd' => FALSE); + +// Additional folders to search for scripts. +// Separate by : (Unix-based systems) or ; (Windows). +# $command_specific['script']['script-path'] = 'sites/all/scripts:profiles/myprofile/scripts'; + +// Always show release notes when running pm-update or pm-updatecode. +# $command_specific['pm-update'] = array('notes' => TRUE); +# $command_specific['pm-updatecode'] = array('notes' => TRUE); + +// Set a predetermined username and password when using site-install. +# $command_specific['site-install'] = array('account-name' => 'alice', 'account-pass' => 'secret'); + +// Use Drupal version specific CLI history instead of per site. +# $command_specific['core-cli'] = array('version-history' => TRUE);