This is an automated email from the ASF dual-hosted git repository.
francischuang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/calcite-avatica.git
The following commit(s) were added to refs/heads/main by this push:
new 7caf7e084 Install svn when using docker release script to promote
release
7caf7e084 is described below
commit 7caf7e084c8610a9f41c0ac5f2083e835c48a4ab
Author: Francis Chuang <[email protected]>
AuthorDate: Wed Nov 29 09:44:37 2023 +1100
Install svn when using docker release script to promote release
---
docker.sh | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/docker.sh b/docker.sh
index 4831ba011..7bd631155 100755
--- a/docker.sh
+++ b/docker.sh
@@ -37,6 +37,11 @@ install_gnupg2_and_svn(){
apt install gnupg2 subversion -y
}
+install_svn(){
+ apt update
+ apt install subversion -y
+}
+
get_gpg_keys(){
GPG_KEYS=$($GPG_COMMAND --list-keys --with-colons --keyid-format LONG)
@@ -303,6 +308,7 @@ case $1 in
;;
promote-release)
+ install_svn
promote_release
;;