You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2022/01/14 04:59:52 UTC

[camel] branch camel-3.7.x updated: Just in case someone runs the gulpfile, update it to put images in corret location (#6746)

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch camel-3.7.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-3.7.x by this push:
     new 364372f  Just in case someone runs the gulpfile, update it to put images in corret location (#6746)
364372f is described below

commit 364372f1a79875224c5d842bd001827e5d25f44e
Author: djencks <dj...@apache.org>
AuthorDate: Thu Jan 13 20:59:04 2022 -0800

    Just in case someone runs the gulpfile, update it to put images in corret location (#6746)
---
 docs/gulpfile.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/gulpfile.js b/docs/gulpfile.js
index 49e4522..f7b65f1 100644
--- a/docs/gulpfile.js
+++ b/docs/gulpfile.js
@@ -37,7 +37,7 @@ function deleteComponentSymlinks () {
 }
 
 function deleteComponentImageSymlinks () {
-  return del(['components/modules/ROOT/assets/images/*'])
+  return del(['components/modules/ROOT/images/*'])
 }
 
 function createComponentSymlinks () {
@@ -180,7 +180,7 @@ function createComponentImageSymlinks () {
       // }));
       // uncomment above .pipe() and remove the .pipe() below
       // when antora#188 is resolved
-      .pipe(dest('components/modules/ROOT/assets/images/'))
+      .pipe(dest('components/modules/ROOT/images/'))
   )
 }