Fix javadoc upload url.

This commit is contained in:
Luke Taylor 2010-05-06 20:02:32 +01:00
parent b3aad4cf19
commit 08844f87d6
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ def remoteDocsDir="$remoteSiteDir/docs/3.1.x"
task uploadApidocs(dependsOn: login) << {
ant {
scp(file: apitar.archivePath, todir: "$login.username@$sshHost:$remoteSiteDir/$remoteDocsDir", password: login.password)
scp(file: apitar.archivePath, todir: "$login.username@$sshHost:$remoteDocsDir", password: login.password)
sshexec(host: sshHost, username: login.username, password: login.password, command: "cd $remoteDocsDir && tar -xjf ${apitar.archiveName}")
sshexec(host: sshHost, username: login.username, password: login.password, command: "rm $remoteDocsDir/${apitar.archiveName}")
}