Skip to content

Commit

Permalink
LPS-104291 Search for *.jspf files as well so that the in the case of…
Browse files Browse the repository at this point in the history
… a fragment module only contain JSPFs they are still compiled and override the existing files as expected
  • Loading branch information
jonathanmccann authored and brianchandotcom committed Nov 6, 2019
1 parent 6d26619 commit 7d5ad70
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public Tracked addingBundle(Bundle bundle, BundleEvent event) {
}

Enumeration<URL> enumeration = bundle.findEntries(
_DIR_NAME_RESOURCES, "*.jsp", true);
_DIR_NAME_RESOURCES, "*.jsp*", true);

if (enumeration == null) {
return null;
Expand Down

0 comments on commit 7d5ad70

Please sign in to comment.