Skip to content
This repository has been archived by the owner on Apr 8, 2020. It is now read-only.

Commit

Permalink
Fixed 'Can only flip STRING and INTEGER values! output.inc:184'
Browse files Browse the repository at this point in the history
  • Loading branch information
gaelg committed Nov 9, 2015
1 parent a6942ba commit 19fb9d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config_extra.drush.inc
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ function _drush_cme_get_initial_vcs_state(&$merge_info) {
}
$uncommitted_changes = drush_shell_exec_output();
if (!empty($uncommitted_changes)) {
return drush_set_error('DRUSH_CONFIG_MERGE_UNCOMMITTED_CHANGES', dt("Working set has uncommitted changes; please commit or discard them before merging. `git stash` before `drush config-merge`, and `git stash pop` afterwards can be useful here.\n\n!changes", array('!changes' => $uncommitted_changes)));
return drush_set_error('DRUSH_CONFIG_MERGE_UNCOMMITTED_CHANGES', dt("Working set has uncommitted changes; please commit or discard them before merging. `git stash` before `drush config-merge`, and `git stash pop` afterwards can be useful here.\n\n!changes", array('!changes' => implode('\n', $uncommitted_changes))));
}
}

Expand Down

0 comments on commit 19fb9d0

Please sign in to comment.