This is an automated email from the ASF dual-hosted git repository. djencks pushed a commit to branch camel-3.7.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit 18ffbc38a6dd0b39971558bbca18516510a25118 Author: David Jencks <[email protected]> AuthorDate: Tue Oct 12 13:40:18 2021 -0700 fix broken gulpfile --- docs/gulpfile.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/gulpfile.js b/docs/gulpfile.js index 40af5ad..49e4522 100644 --- a/docs/gulpfile.js +++ b/docs/gulpfile.js @@ -133,7 +133,11 @@ function createComponentDataFormatSymlinks () { function createComponentLanguageSymlinks () { return ( - src(['../components/{*,*/*}/src/main/docs/*-language.adoc']) + src([ + '../components/{*,*/*}/src/main/docs/*-language.adoc', + '../core/camel-core-languages/src/main/docs/modules/languages/pages/*-language.adoc', + '../core/camel-xml-jaxp/src/main/docs/modules/languages/pages/*-language.adoc', + ]) .pipe( map((file, done) => { // this flattens the output to just .../pages/....adoc
