This is an automated email from the ASF dual-hosted git repository.

toulmean pushed a commit to branch 2.3
in repository https://gitbox.apache.org/repos/asf/incubator-tuweni.git


The following commit(s) were added to refs/heads/2.3 by this push:
     new be3b5c01 Add svn option to allow to prompt for password
be3b5c01 is described below

commit be3b5c014411b67124180ad4770bd590db332e7d
Author: Antoine Toulme <anto...@lunar-ocean.com>
AuthorDate: Sat Sep 24 09:25:21 2022 -0700

    Add svn option to allow to prompt for password
---
 gradle/stage.gradle | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gradle/stage.gradle b/gradle/stage.gradle
index 3976b32d..c83ec9fc 100644
--- a/gradle/stage.gradle
+++ b/gradle/stage.gradle
@@ -89,12 +89,12 @@ class SubversionStageTask extends DefaultTask {
 
     // create the folder in SVN where we will stage the binaries
     project.exec {
-      commandLine "svn", "mkdir", "-m", "Add new Apache Tuweni folder for 
release $project.version", 
"https://dist.apache.org/repos/dist/dev/incubator/tuweni/$project.version-incubating";
+      commandLine "svn", "mkdir", "-m", "Add new Apache Tuweni folder for 
release $project.version", 
"https://dist.apache.org/repos/dist/dev/incubator/tuweni/$project.version-incubating";,
 "--force-interactive"
     }
 
     // check out the SVN repository where we will store the binaries
     project.exec {
-      commandLine "svn", "checkout", 
"https://dist.apache.org/repos/dist/dev/incubator/tuweni/$project.version-incubating";,
 "_staged/$project.version-incubating"
+      commandLine "svn", "checkout", 
"https://dist.apache.org/repos/dist/dev/incubator/tuweni/$project.version-incubating";,
 "_staged/$project.version-incubating", "--force-interactive"
     }
   }
 }
@@ -138,7 +138,7 @@ class CopyStagedTask extends DefaultTask {
     }
     project.exec {
       workingDir "_staged/$project.version-incubating/"
-      commandLine 'svn', 'ci', '-m', "Add Apache Tuweni $project.version 
release candidate"
+      commandLine 'svn', 'ci', '-m', "Add Apache Tuweni $project.version 
release candidate", "--force-interactive"
     }
   }
 }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@tuweni.apache.org
For additional commands, e-mail: commits-h...@tuweni.apache.org

Reply via email to