You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ja...@apache.org on 2009/02/06 18:40:09 UTC

svn commit: r741649 - /ofbiz/trunk/build.xml

Author: jacopoc
Date: Fri Feb  6 17:40:09 2009
New Revision: 741649

URL: http://svn.apache.org/viewvc?rev=741649&view=rev
Log:
Made Y/N answer to create new hot deploy component case insensitive.

Modified:
    ofbiz/trunk/build.xml

Modified: ofbiz/trunk/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/build.xml?rev=741649&r1=741648&r2=741649&view=diff
==============================================================================
--- ofbiz/trunk/build.xml (original)
+++ ofbiz/trunk/build.xml Fri Feb  6 17:40:09 2009
@@ -396,7 +396,7 @@
               Base permission: ${base-permission}
               Folder: ${basedir}/hot-deploy/${component-name}
         </echo>
-        <input addproperty="confirm-component-creation" message="Confirm: " defaultvalue="N" validargs="Y,N"/>
+        <input addproperty="confirm-component-creation" message="Confirm: " defaultvalue="N" validargs="Y,N,y,n"/>
         <fail message="Component creation cancelled by the user.">
             <condition>
                 <equals arg1="${confirm-component-creation}" arg2="N"/>