bootstrap.sh: stop using the deprecated drush "pm-info" command
authorAntonio Ospite <ao2@ao2.it>
Sat, 10 Mar 2018 14:58:30 +0000 (15:58 +0100)
committerAntonio Ospite <ao2@ao2.it>
Fri, 16 Mar 2018 12:30:04 +0000 (13:30 +0100)
This fixes the following drush error:

  The pm-info command was deprecated. Please see `drush pm:list` and `composer show`

While at it also use an exact pattern for the module name, this avoids
matching against other modules which may contain the word 'locale' in
their names.

libexec/bootstrap.sh

index e3671c0..9ea3c32 100755 (executable)
@@ -156,7 +156,7 @@ $DRUSH --verbose --yes \
   --account-mail="$ACCOUNT_MAIL" \
   "$INSTALLATION_PROFILE"
 
-if $DRUSH pm-info --fields=status locale | grep -q enabled;
+if $DRUSH pm-list --type=module --field=name --status=enabled --pipe | grep -q "^locale$";
 then
   # This is necessary for multi-language sites, it fixes some issues like:
   #   "The Translation source field needs to be installed."