You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by zr...@apache.org on 2022/01/10 18:44:06 UTC

[camel] branch camel-3.11.x updated: Refactor copying images

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

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


The following commit(s) were added to refs/heads/camel-3.11.x by this push:
     new d2691cf  Refactor copying images
d2691cf is described below

commit d2691cf98b14b3e1e008349723f27e5d7b94be2c
Author: Zoran Regvart <zo...@regvart.com>
AuthorDate: Mon Jan 10 19:43:43 2022 +0100

    Refactor copying images
    
    We don't want images in `.../assets/images` but in `.../images`.
---
 docs/gulpfile.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/gulpfile.js b/docs/gulpfile.js
index 6d837f2..328d6af 100644
--- a/docs/gulpfile.js
+++ b/docs/gulpfile.js
@@ -39,7 +39,7 @@ function deleteComponentSymlinks () {
 }
 
 function deleteComponentImageSymlinks () {
-  return del(['components/modules/ROOT/assets/images/*'])
+  return del(['components/modules/ROOT/images/*'])
 }
 
 function createComponentSymlinks () {
@@ -178,7 +178,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/'))
   )
 }