Skip to content
Snippets Groups Projects

Remove --quiet from updatedb

Open Adam Bramley requested to merge issue/drupal-3499275:3499275-remove---quiet-from into 11.x
2 unresolved threads

Closes #3499275

Merge request reports

Members who can merge are allowed to add commits.

Merge request pipeline #394021 passed

Pipeline: drupal-3499275

#394022

    Merge request pipeline passed for 6c347110

    Approval is optional
    Ready to merge by members who can write to the target branch.

    Merge details

    • The source branch is 855 commits behind the target branch.
    • 2 commits and 1 merge commit will be added to .
    • Source branch will not be deleted.

    Activity

    Filter activity
    • Approvals
    • Assignees & reviewers
    • Comments (from bots)
    • Comments (from users)
    • Commits & branches
    • Edits
    • Labels
    • Lock status
    • Mentions
    • Merge request status
    • Tracking
    528 528 # Install Drupal's Standard install profile + all core modules (except obsolete ones) + the config inspector module.
    529 529 - php core/scripts/drupal install standard
    530 530 - ls core/modules | grep -v sdc | xargs vendor/bin/drush pm:install --yes
    531 531 - vendor/bin/drush pm:install config_inspector --yes --quiet || exit 101
    • Should we expand the scope and remove it from here too? We're only suppressing one line of output and possibly hiding other issues.

       [success] Module config_inspector has been installed. (Permissions - Configure)
    • Please register or sign in to reply
  • 528 528 # Install Drupal's Standard install profile + all core modules (except obsolete ones) + the config inspector module.
    529 529 - php core/scripts/drupal install standard
    530 530 - ls core/modules | grep -v sdc | xargs vendor/bin/drush pm:install --yes
    531 531 - vendor/bin/drush pm:install config_inspector --yes --quiet || exit 101
    532 532 # Compute statistics for coverage of validatable config for HEAD.
    533 533 - vendor/bin/drush config:inspect --statistics > HEAD.json
    534 534 # Return to the MR commit being tested, conditionally install updates, always rebuild the container.
    535 535 - git checkout -f $CI_COMMIT_SHA
    536 - git diff $CI_MERGE_REQUEST_DIFF_BASE_SHA $CI_COMMIT_SHA --name-only | grep -q '.install$\|.post_update\.php$' && echo '🤖 Installing DB updates…' && vendor/bin/drush updatedb --yes --quiet
    536 - git diff $CI_MERGE_REQUEST_DIFF_BASE_SHA $CI_COMMIT_SHA --name-only | grep -q '.install$\|.post_update\.php$' && echo '🤖 Installing DB updates…' && vendor/bin/drush updatedb --yes
    537 537 - vendor/bin/drush cr --quiet
  • Couple more places this might make sense

  • Please register or sign in to reply
    Loading