Skip to content

Commit

Permalink
Remove -- before message options to avoid drush Unknown Options error.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rocket committed Dec 28, 2011
1 parent 6412a0b commit cfe7b8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dgb.drush.inc
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function dgb_drush_command() {
'callback' => 'drush_dgb_commit',
'bootstrap' => DRUSH_BOOTSTRAP_DRUPAL_CONFIGURATION,
'options' => array(
'--m' => 'An explicit commit message (useful for manual commits for example).',
'm' => 'An explicit commit message (useful for manual commits for example).',
) + $options,
);

Expand All @@ -58,7 +58,7 @@ function dgb_drush_command() {
'callback' => 'drush_dgb_backup',
'bootstrap' => DRUSH_BOOTSTRAP_DRUPAL_CONFIGURATION,
'options' => array(
'--m' => 'An explicit commit message (useful for manual commits for example).',
'm' => 'An explicit commit message (useful for manual commits for example).',
) + $options,
);

Expand Down

0 comments on commit cfe7b8d

Please sign in to comment.