Skip to content

Commit

Permalink
Fix #2080. cutie specified wrong path for sqlite DB.
Browse files Browse the repository at this point in the history
  • Loading branch information
weitzman committed Mar 23, 2016
1 parent 769b067 commit e345ae5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/core/core.drush.inc
Original file line number Diff line number Diff line change
Expand Up @@ -944,7 +944,7 @@ function drush_core_quick_drupal() {
}
}
if (!drush_get_option('db-url', FALSE)) {
drush_set_option('db-url', 'sqlite://' . $base . '/sites/' . strtolower(drush_get_option('sites-subdir', 'default')) . "/$name.sqlite");
drush_set_option('db-url', 'sqlite://sites/' . strtolower(drush_get_option('sites-subdir', 'default')) . "/files/$name.sqlite");
}
// We have just created a site root where one did not exist before.
// We therefore must manually reset DRUSH_SELECTED_DRUPAL_ROOT to
Expand Down

0 comments on commit e345ae5

Please sign in to comment.