This is an automated email from the ASF dual-hosted git repository. dklco pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-app-cms.git
commit b5290e010cd29674ac4c3cd829cc1758bd7f201c Author: Dan Klco <[email protected]> AuthorDate: Wed Oct 14 12:33:32 2020 -0400 Adding /static to the list of seeded paths --- feature/src/main/features/oak/node-store/composite-runtime.json | 1 + feature/src/main/features/oak/node-store/composite-seed.json | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/feature/src/main/features/oak/node-store/composite-runtime.json b/feature/src/main/features/oak/node-store/composite-runtime.json index 910374a..0a5b220 100644 --- a/feature/src/main/features/oak/node-store/composite-runtime.json +++ b/feature/src/main/features/oak/node-store/composite-runtime.json @@ -23,6 +23,7 @@ "mountedPaths": [ "/libs", "/apps", + "/static", "/jcr:system/rep:permissionStore/oak:mount-libs-default" ] }, diff --git a/feature/src/main/features/oak/node-store/composite-seed.json b/feature/src/main/features/oak/node-store/composite-seed.json index 3e3c768..78d9b56 100644 --- a/feature/src/main/features/oak/node-store/composite-seed.json +++ b/feature/src/main/features/oak/node-store/composite-seed.json @@ -33,11 +33,13 @@ "mountName": "libs", "readOnlyMount": false, "pathsSupportingFragments": [ - "/oak:index/*$" + "/oak:index/*$", + "/var/sling/bundle-content/*$" ], "mountedPaths": [ "/libs", "/apps", + "/static", "/jcr:system/rep:permissionStore/oak:mount-libs-default" ] }
