From 6a78346e1ec2e877adc180365b7f6befcf0486b1 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Fri, 7 Jun 2019 07:38:14 +0100 Subject: [PATCH] Rebuild cache after changing uuids --- drupal/.docksal/commands/init-site | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drupal/.docksal/commands/init-site b/drupal/.docksal/commands/init-site index 76f2ad2..3878ef5 100755 --- a/drupal/.docksal/commands/init-site +++ b/drupal/.docksal/commands/init-site @@ -66,6 +66,9 @@ setup_users() { echo "Resetting uuid for the API user..." drush sql:query "UPDATE users SET uuid = '63936126-87cd-4166-9cb4-63b61a210632' WHERE uid = 7" + + echo "Rebuilding cache..." + drush cache:rebuild } #-------------------------- END: Functions --------------------------------