HHH-9826 - Update the release task for uploading release bundles to SourceForge FRS

This commit is contained in:
Steve Ebersole 2015-05-27 21:02:27 -05:00
parent 369a2904da
commit d0c2c31ab7
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ task buildBundles(type: Task, dependsOn: [distZip,distTar]) {
task uploadBundles(type: Exec, dependsOn: buildBundles) {
description = "Uploads release bundles to SourceForge"
final String url = "frs.sourceforge.net:/home/frs/project/hibernate/hibernate-orm/${majorVersion}/${version}";
final String url = "frs.sourceforge.net:/home/frs/project/hibernate/hibernate-orm/${version}";
executable 'rsync'
args '-vr', '-e ssh', "${project.buildDir}/distributions/", url