GaëlG

Results 2 issues of GaëlG

I actually made a fork. See https://github.com/drush-ops/config-extra/issues/2

The bug comes from _drush_cme_get_initial_vcs_state(): ``` php $uncommitted_changes = drush_shell_exec_output(); //returns an array if (!empty($uncommitted_changes)) { return drush_set_error('...', dt("... !changes", array('!changes' => $uncommitted_changes))); // a string should be passed, not...