From cd743defc40ca012b819aac0d40feeffefdc79db Mon Sep 17 00:00:00 2001 From: Antonio Ospite Date: Sat, 10 Mar 2018 20:15:57 +0100 Subject: [PATCH] create-profile.sh: fix pm-list invocation to be compatible with Drush 9 And while at it also strip the last comma in the generated list. --- libexec/create-profile.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libexec/create-profile.sh b/libexec/create-profile.sh index fae4bcc..aa627b0 100755 --- a/libexec/create-profile.sh +++ b/libexec/create-profile.sh @@ -81,8 +81,8 @@ pushd "$WEB_ROOT" # However getting them before exporting the configuration and generating the # profile is cleaner. # -ENABLED_MODULES="$($DRUSH pm-list --type=module --status=enabled --pipe | tr '\n' ',')" -ENABLED_THEMES="$($DRUSH pm-list --type=theme --status=enabled --pipe | tr '\n' ',')" +ENABLED_MODULES="$($DRUSH pm-list --type=module --field=name --status=enabled --pipe | tr '\n' ',' | sed 's/,$//')" +ENABLED_THEMES="$($DRUSH pm-list --type=theme --field=name --status=enabled --pipe | tr '\n' ',' | sed 's/,$//')" $DRUPAL_CONSOLE generate:profile \ --profile="$PROFILE_TITLE" \ -- 2.1.4