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
commit c0e0c350ceb33a0b695452ac8c47640ccc9a0ba3 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 ;;
