From ee905c134754063f0cde2eb025ed9146e65b8809 Mon Sep 17 00:00:00 2001
From: Armand Bahi <armand.bahi@veremes.com>
Date: Tue, 23 Oct 2018 16:37:40 +0200
Subject: [PATCH] Resolve web services update problem

---
 utils/update_tree.bat | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/utils/update_tree.bat b/utils/update_tree.bat
index a394a343..3c3c5dc3 100644
--- a/utils/update_tree.bat
+++ b/utils/update_tree.bat
@@ -58,21 +58,21 @@ for /d %%g in ("../src/module_*") do (
     echo copy client/modules/!x:~7!
     robocopy "../src/%%g/module" "../client/modules/!x:~7!" /E /NFL /NDL /NJH /NJS /nc /ns /np
   )
-  if exist "src/%%g/web_service/conf" (
+  if exist "../src/%%g/web_service/conf" (
     echo copy vas/rest/conf_veremes/!x:~7!
-    robocopy "src/%%g/web_service/conf" "vas/rest/conf_veremes/!x:~7!" /E /NFL /NDL /NJH /NJS /nc /ns /np
+    robocopy "../src/%%g/web_service/conf" "../vas/rest/conf_veremes/!x:~7!" /E /NFL /NDL /NJH /NJS /nc /ns /np
   )
-  if exist "src/%%g/web_service/sql" (
+  if exist "../src/%%g/web_service/sql" (
     echo copy vas/sql/!x:~7!
-    robocopy "src/%%g/web_service/sql" "vas/sql/!x:~7!" /E /NFL /NDL /NJH /NJS /nc /ns /np
+    robocopy "../src/%%g/web_service/sql" "../vas/sql/!x:~7!" /E /NFL /NDL /NJH /NJS /nc /ns /np
   )
-  if exist "src/%%g/web_service/ws" (
+  if exist "../src/%%g/web_service/ws" (
     echo copy vas/rest/ws/!x:~7!
-    robocopy "src/%%g/web_service/ws" "vas/rest/ws/!x:~7!" /E /NFL /NDL /NJH /NJS /nc /ns /np
+    robocopy "../src/%%g/web_service/ws" "../vas/rest/ws/!x:~7!" /E /NFL /NDL /NJH /NJS /nc /ns /np
   )
-  if exist "src/%%g/web_service/class" (
+  if exist "../src/%%g/web_service/class" (
     echo copy vas/rest/class
-    robocopy "src/%%g/web_service/class" "vas/rest/class" /E /NFL /NDL /NJH /NJS /nc /ns /np
+    robocopy "../src/%%g/web_service/class" "../vas/rest/class" /E /NFL /NDL /NJH /NJS /nc /ns /np
   )
 )
 
-- 
GitLab