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 2016/08/15 05:53:36 UTC

svn commit: r1756351 - /ofbiz/trunk/build.gradle

Author: jleroux
Date: Mon Aug 15 05:53:36 2016
New Revision: 1756351

URL: http://svn.apache.org/viewvc?rev=1756351&view=rev
Log:
Fixes a bug after "remove ofbizSecure and ofbizBackgroundSecure targets from the gradle build script" - https://issues.apache.org/jira/browse/OFBIZ-7951

Modified:
    ofbiz/trunk/build.gradle

Modified: ofbiz/trunk/build.gradle
URL: http://svn.apache.org/viewvc/ofbiz/trunk/build.gradle?rev=1756351&r1=1756350&r2=1756351&view=diff
==============================================================================
--- ofbiz/trunk/build.gradle (original)
+++ ofbiz/trunk/build.gradle Mon Aug 15 05:53:36 2016
@@ -731,7 +731,8 @@ tasks.addRule('Pattern: ofbizDebug <Comm
 
 tasks.addRule('Pattern: ofbizBackground <Commands>: Execute OFBiz startup commands in background and output to console.log') { String taskName ->
     if(taskName ==~ /^ofbizBackground\s.*/ || taskName == 'ofbizBackground') {
-        createOfbizBackgroundCommandTask(taskName)
+        def arguments = (taskName - 'ofbizBackground').toLowerCase().tokenize(' ')
+        createOfbizCommandTask(taskName, arguments, jvmArguments, false)
     }
 }