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 54fbbd7f3e6743d25d3458f410808d9b67a97f13 Author: Francis Chuang <[email protected]> AuthorDate: Mon Nov 27 10:18:43 2023 +1100 Install svn in docker release script --- docker.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker.sh b/docker.sh index 3c7981dd0..c5a6e7dda 100755 --- a/docker.sh +++ b/docker.sh @@ -32,9 +32,9 @@ KEYS=() GPG_COMMAND="gpg" -install_gnupg2(){ +install_gnupg2_and_svn(){ apt update - apt install gnupg2 -y + apt install gnupg2 svn -y } get_gpg_keys(){ @@ -280,7 +280,7 @@ promote_release(){ case $1 in dry-run) - install_gnupg2 + install_gnupg2_and_svn mount_gpg_keys select_gpg_key get_dry_run_build_configuration @@ -289,7 +289,7 @@ case $1 in ;; publish-release-for-voting) - install_gnupg2 + install_gnupg2_and_svn mount_gpg_keys select_gpg_key get_build_configuration
