You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2018/12/22 18:31:32 UTC

svn commit: r1849564 - /ofbiz/tools/demo-backup/Nicolas/trunk.sh

Author: jleroux
Date: Sat Dec 22 18:31:32 2018
New Revision: 1849564

URL: http://svn.apache.org/viewvc?rev=1849564&view=rev
Log:
Was missing ./gradlew --no-daemon pullAllPluginsSource

Modified:
    ofbiz/tools/demo-backup/Nicolas/trunk.sh

Modified: ofbiz/tools/demo-backup/Nicolas/trunk.sh
URL: http://svn.apache.org/viewvc/ofbiz/tools/demo-backup/Nicolas/trunk.sh?rev=1849564&r1=1849563&r2=1849564&view=diff
==============================================================================
--- ofbiz/tools/demo-backup/Nicolas/trunk.sh (original)
+++ ofbiz/tools/demo-backup/Nicolas/trunk.sh Sat Dec 22 18:31:32 2018
@@ -8,6 +8,7 @@ cd $OFBIZ_DIR
 
 #update source code
 svn up
+./gradlew --no-daemon pullAllPluginsSource
 
 #reset user file modification
 svn revert -R *
@@ -17,7 +18,7 @@ IFS=$'\n'
 for i in $(svn st | grep ^? |cut -c 9-); do rm -fr "$i"; done;
 if [ -n "$(svn st | grep ^?)" ]; then
     # this to remove all unsupported file name like C:/ created and not cover by previous command
-    for i in $(svn st | grep ^? |cut -c 9-); do 
+    for i in $(svn st | grep ^? |cut -c 9-); do
         rename_file = "$(echo $i| sed s/[:\\\ ]/_/g)";
         mv "$i" "$rename_file";
         rm "$rename_file";