diff --git a/varbase.profile b/varbase.profile index 6269ed01c2fedc88cb3bb7c8cafe8d1ca1daad88..00db5ee80ff22115e0b518294bca7784bf581c3c 100644 --- a/varbase.profile +++ b/varbase.profile @@ -441,6 +441,12 @@ function varbase_uninstall_component($uninstall_component) { */ function varbase_after_install_finished(array &$install_state) { + // Mark all updates by the update helper checklist as successful on install. + if (\Drupal::moduleHandler()->moduleExists('update_helper_checklist')) { + $checkList = \Drupal::service('update_helper_checklist.update_checklist'); + $checkList->markAllUpdates(); + } + // Activate Varbase Bootstrap Paragraphs Settings in the active config. if (\Drupal::moduleHandler()->moduleExists('varbase_bootstrap_paragraphs')) { $profile_path = drupal_get_path('profile', 'varbase') . '/config/optional/';