[Regression] upgrade_status job fails after update to 11.4
# Motivation The upgrade_status job results in a script failure since e4cb7d57 . ## Examples - Good job: https://git.drupalcode.org/project/menu_entity_index/-/jobs/10543576 - Bad job: https://git.drupalcode.org/project/menu_entity_index/-/jobs/10681753 # Analysis The culprit seems to be this PHP warning: ```txt $ php $_WEB_ROOT/core/scripts/drupal install standard PHP Deprecated: Calling drupal is deprecated in drupal:11.4.0 and is removed from drupal:13.0.0. Use the `dr` script instead. See https://www.drupal.org/node/3584928 in /builds/project/menu_entity_index/web/core/scripts/drupal on line 16 ``` After that, the script ends with a script failure. # Proposed resolution Check, if `dr` exists. If so, use it to install. Otherwise assume the core version in use is older and fall back to `drupal`.
issue