You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 8, 2020. It is now read-only.
The bug comes from _drush_cme_get_initial_vcs_state():
$uncommitted_changes = drush_shell_exec_output(); //returns an arrayif (!empty($uncommitted_changes)) {
returndrush_set_error('...', dt("... !changes", array('!changes' => $uncommitted_changes))); // a string should be passed, not an array
}
Easy fix:
returndrush_set_error('...', dt("... !changes", array('!changes' => implode('\n', $uncommitted_changes))));
I don't submit a patch or pull request because I'm not very used to GitHub.
The bug comes from _drush_cme_get_initial_vcs_state():
Easy fix: