From 7775dcfa1aea336a94846fe9594ee5bc19e4ddb9 Mon Sep 17 00:00:00 2001 From: Don Richards <2738244+DonRichards@users.noreply.github.com> Date: Wed, 15 May 2024 10:17:51 -0400 Subject: [PATCH] Fix theme libraries directory Signed-off-by: Don Richards <2738244+DonRichards@users.noreply.github.com> --- custom.Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/custom.Makefile b/custom.Makefile index c8b3d0420..57c0a7512 100644 --- a/custom.Makefile +++ b/custom.Makefile @@ -307,6 +307,8 @@ jhu_sync_repos: [ -d "../idc_default_migration/" ] && rsync -avz ../idc_default_migration codebase/web/modules/contrib/idc_default_migration --delete mkdir -p islandora_workbench/islandora_workbench_demo_content [ -d "../islandora_workbench_demo_content/" ] && rsync -avz islandora_workbench/islandora_workbench_demo_content --delete + docker-compose exec drupal with-contenv bash -lc 'cp -r /var/www/drupal/web/core/assets/vendor/popperjs /var/www/drupal/web/libraries/popperjs ; cp -r /var/www/drupal/vendor/twbs/bootstrap /var/www/drupal/web/libraries/bootstrap ; chown -R nginx: /var/www/drupal/web/libraries/' + docker-compose exec drupal with-contenv bash -lc 'find /var/www/drupal/web/libraries/ -type d -exec chmod 755 {} \; -o -type f -exec chmod 644 {} \;' $(MAKE) set-codebase-owner .PHONY: test @@ -336,4 +338,4 @@ jhu_stop: @echo "" @echo "Stopping containers" docker-compose stop - @echo " └─ Done" \ No newline at end of file + @echo " └─ Done"