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

marat pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-karavan.git


The following commit(s) were added to refs/heads/main by this push:
     new 3dd6438d Update DEV.md corrected XCOPY command source path (#1148)
3dd6438d is described below

commit 3dd6438dc58917a3d8dc4cc09521d89907087556
Author: Praval jindal <94207665+praval...@users.noreply.github.com>
AuthorDate: Tue Feb 27 20:48:24 2024 +0530

    Update DEV.md corrected XCOPY command source path (#1148)
    
    Corrected the source paths in the XCOPY commands to go one more level up in 
the directory structure, ensuring the correct source directories are copied to 
the destination.
---
 docs/DEV.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/DEV.md b/docs/DEV.md
index c092ffa0..f022f107 100644
--- a/docs/DEV.md
+++ b/docs/DEV.md
@@ -55,9 +55,9 @@ Docker Engine 24+
 1. Make the following change in package.json line 5-12 (needed only for 
Windows)
 ```
   "scripts": {
-    "copy-designer": "xcopy ..\\..\\..\\..\\karavan-designer\\src\\designer 
src\\designer /E/H/Y",
-    "copy-knowledgebase": "xcopy 
..\\..\\..\\..\\karavan-designer\\src\\knowledgebase src\\knowledgebase /E/H/Y",
-    "copy-topology": "xcopy ..\\..\\..\\..\\karavan-designer\\src\\topology 
src\\topology /E/H/Y",
+    "copy-designer": "xcopy 
..\\..\\..\\..\\..\\karavan-designer\\src\\designer src\\designer /E/H/Y",
+    "copy-knowledgebase": "xcopy 
..\\..\\..\\..\\..\\karavan-designer\\src\\knowledgebase src\\knowledgebase 
/E/H/Y",
+    "copy-topology": "xcopy 
..\\..\\..\\..\\..\\karavan-designer\\src\\topology src\\topology /E/H/Y",
     "copy-code": " npm run copy-designer &&  npm run copy-knowledgebase &&  
npm run copy-topology",
     "start": "set PORT=3003 && npm run copy-code && react-scripts start",
     "build": "npm run copy-code && DISABLE_ESLINT_PLUGIN=true react-scripts 
build"

Reply via email to