site clean command in 'site:sshdeploy' goal doesn't take maven.ssh.args 
parameter
---------------------------------------------------------------------------------

         Key: MPSITE-36
         URL: http://jira.codehaus.org/browse/MPSITE-36
     Project: maven-site-plugin
        Type: Bug
  Components: plugin  
    Versions: 1.6.1    
 Reporter: Alexey Demakov
    Priority: Trivial


in site:sshdeploy:

    <j:if test="${siteClean}">
      <echo>Cleaning destination first</echo>
      <exec dir="." executable="${maven.ssh.executable}">
        <arg line="[EMAIL PROTECTED] 'rm -r ${siteDirectory}'" />
      </exec>
    </j:if>

should be 

    <j:if test="${siteClean}">
      <echo>Cleaning destination first</echo>
      <exec dir="." executable="${maven.ssh.executable}">
        <arg line="${maven.ssh.args} [EMAIL PROTECTED] 'rm -r 
${siteDirectory}'" />
      </exec>
    </j:if>


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to