From 8cfc23da37bcb2cd63218c6ed231bd1f8e9233a4 Mon Sep 17 00:00:00 2001 From: Patrik Nordwall Date: Thu, 30 Apr 2020 21:26:49 +0200 Subject: [PATCH] fix publishRsync in release script (#29003) --- project/scripts/release | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/scripts/release b/project/scripts/release index 6ecd11afbe..dbd265b667 100755 --- a/project/scripts/release +++ b/project/scripts/release @@ -326,7 +326,7 @@ if [ $dry_run ]; then else important ssh ${release_server} "cd ${release_path}/docs/akka; git add .; git commit -m 'before publishing version $version'; true" # using Scala 2.13 here to avoid the infamous problem with missing AskSupport in classpath - important sbt -Dakka.build.scalaVersion=2.13.0 $RELEASE_OPT publishRsync" + important sbt -Dakka.build.scalaVersion=2.13.0 $RELEASE_OPT publishRsync important ssh ${release_server} "cd ${release_path}/docs/akka; git add .; git commit -m 'publish version $version'" fi