Skip to content

Commit

Permalink
Considering "default" as an unset URI in doctor. (#582)
Browse files Browse the repository at this point in the history
  • Loading branch information
grasmash authored Oct 18, 2016
1 parent c442629 commit 443e48f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Drush/Command/BltDoctorCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ protected function checkLocalDrushFile() {
* @return bool
*/
protected function checkUri() {
if (!$this->uri) {
if (!$this->uri || $this->uri == 'default') {
$this->logOutcome(__FUNCTION__, [
"Site URI is not set",
"",
Expand Down

0 comments on commit 443e48f

Please sign in to comment.