From 421ef24544970f5e45781d17edb5d57b5235a040 Mon Sep 17 00:00:00 2001 From: Nate Lampton Date: Mon, 15 Apr 2024 10:53:02 -0700 Subject: [PATCH] Issue #238: Change DRUSH_BOOTSTRAP_DRUSH to DRUSH_BOOTSTRAP_NONE. --- BackdropBoot.php | 2 +- grn/grn.drush.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/BackdropBoot.php b/BackdropBoot.php index 014e26c..038bce2 100644 --- a/BackdropBoot.php +++ b/BackdropBoot.php @@ -121,7 +121,7 @@ function conf_path($require_settings = TRUE, $reset = FALSE) { * * Phases: * - * DRUSH_BOOTSTRAP_DRUSH = Only Backdrop. + * DRUSH_BOOTSTRAP_NONE = Only Drush. * BOOTSTRAP_ROOT = Find a valid Drupal root. * BOOTSTRAP_SITE = Find a valid Drupal site. * BOOTSTRAP_CONFIGURATION = Load the site's settings. diff --git a/grn/grn.drush.inc b/grn/grn.drush.inc index 87ef449..abfa6cd 100644 --- a/grn/grn.drush.inc +++ b/grn/grn.drush.inc @@ -80,7 +80,7 @@ function grn_drush_command() { // I keep typing it, but not intuitive for others. 'deprecated-aliases' => array('grn'), // No bootstrap needed. - 'bootstrap' => DRUSH_BOOTSTRAP_DRUSH, + 'bootstrap' => DRUSH_BOOTSTRAP_NONE, ); return $items; }