function drush_markdown_version_hash in Markdown 8.2
Callback function for drush markdown-version-hash.
Related topics
File
- ./
markdown.drush.inc, line 69 - Drush commands for Drupal Markdown.
Code
function drush_markdown_version_hash($package = NULL) {
$options = array_intersect_key(drush_get_merged_options(), drush_get_command()['options']);
return _drush_markdown_commands()
->versionHash($package, $options);
}