Skip to content

Commit

Permalink
README.txt has changed to README.md; update various references to match.
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-1-anderson committed Aug 23, 2013
1 parent 4539f32 commit 4b9d109
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ FAQ
rhymes with hush, rush, flush, etc. This is the preferred pronunciation.
Q: Does Drush have unit tests?
A: Drush has an excellent suite of unit tests. See the README.txt file in the /tests subdirectory for
A: Drush has an excellent suite of unit tests. See the README.md file in the /tests subdirectory for
more information.
```
Expand Down
4 changes: 2 additions & 2 deletions commands/core/docs.drush.inc
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ function docs_drush_command() {
// any other command).
//
$items['docs-readme'] = array(
'description' => 'README.txt',
'description' => 'README.md',
'hidden' => TRUE,
'topic' => TRUE,
'bootstrap' => DRUSH_BOOTSTRAP_DRUSH,
'callback' => 'drush_print_file',
'callback arguments' => array($docs_dir . '/README.txt'),
'callback arguments' => array($docs_dir . '/README.md'),
);
$items['docs-bashrc'] = array(
'description' => 'Bashrc customization examples for Drush.',
Expand Down
2 changes: 1 addition & 1 deletion docs/make.txt
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ itself. Writing a new test is extremely simple. The process is as follows:
),
'options' => array('any' => TRUE, 'other' => TRUE, 'options' => TRUE),
),
5. Test! Run drush test suite (see DRUSH/tests/README.txt). To just
5. Test! Run drush test suite (see DRUSH/tests/README.md). To just
run the make tests:

`phpunit --filter=makeMake .`
Expand Down
2 changes: 1 addition & 1 deletion includes/bootstrap.inc
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ function _drush_bootstrap_base_environment() {
if (getenv('SHARE_PREFIX')) drush_set_context('SHARE_PREFIX', getenv('SHARE_PREFIX'));

drush_set_context('DOC_PREFIX', DRUSH_BASE_PATH);
if (!file_exists(DRUSH_BASE_PATH . '/README.txt') && file_exists(drush_get_context('SHARE_PREFIX', '/usr') . '/share/doc/drush') . '/README.txt') {
if (!file_exists(DRUSH_BASE_PATH . '/README.md') && file_exists(drush_get_context('SHARE_PREFIX', '/usr') . '/share/doc/drush' . '/README.md')) {
drush_set_context('DOC_PREFIX', drush_get_context('SHARE_PREFIX', '/usr') . '/share/doc/drush');
}
$alias_path =& drush_get_context('ALIAS_PATH');
Expand Down

0 comments on commit 4b9d109

Please sign in to comment.