HHH-8144 corrected rsync args
This commit is contained in:
parent
80b07c0281
commit
7678fae6a5
|
@ -149,7 +149,7 @@ task uploadDocumentation(type:Exec, dependsOn: buildDocumentation) {
|
||||||
final String url = 'filemgmt.jboss.org:/docs_htdocs/hibernate/';
|
final String url = 'filemgmt.jboss.org:/docs_htdocs/hibernate/';
|
||||||
|
|
||||||
executable 'rsync'
|
executable 'rsync'
|
||||||
args '-rv', '--links', '--protocol=28', "${documentationUploadStagingDir.absolutePath}/", url
|
args '-avz', '--links', '--protocol=28', "${documentationUploadStagingDir.absolutePath}/", url
|
||||||
|
|
||||||
doFirst {
|
doFirst {
|
||||||
if ( version.endsWith( "SNAPSHOT" ) ) {
|
if ( version.endsWith( "SNAPSHOT" ) ) {
|
||||||
|
|
Loading…
Reference in New Issue