You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by bw...@apache.org on 2003/03/11 11:44:01 UTC

cvs commit: jakarta-turbine-maven/src/plugins-build/deploy plugin.jelly

bwalding    2003/03/11 02:44:01

  Modified:    src/plugins-build/deploy plugin.jelly
  Log:
  o MAVEN-324: Swapped order of -l username and siteaddress. Works with cygwin ssh / unix ssh, and should theoretically work better with putty according to request.
  
  Revision  Changes    Path
  1.2       +2 -2      jakarta-turbine-maven/src/plugins-build/deploy/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/deploy/plugin.jelly,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- plugin.jelly	24 Jan 2003 03:45:07 -0000	1.1
  +++ plugin.jelly	11 Mar 2003 10:44:01 -0000	1.2
  @@ -88,7 +88,7 @@
         <j:set var="assureDirectoryCommandX" value="${assureDirectoryCommand}X"/>
         <j:if test="${assureDirectoryCommandX != 'X'}">
           <exec dir="." executable="${commander}">
  -          <arg line="${siteAddress} -l ${username} '${assureDirectoryCommand} ${resolvedDirectory}'"/>
  +          <arg line="-l ${username} ${siteAddress} '${assureDirectoryCommand} ${resolvedDirectory}'"/>
           </exec>
         </j:if>
         
  @@ -118,7 +118,7 @@
           </echo>
           
           <exec dir="." executable="${commander}">
  -          <arg line="${siteAddress} -l ${username} '${siteCommand}'"/>
  +          <arg line="-l ${username} ${siteAddress} '${siteCommand}'"/>
           </exec>
   
         </j:if>