Skip to content

Commit

Permalink
Install svn when using docker release script to promote release
Browse files Browse the repository at this point in the history
  • Loading branch information
F21 committed Nov 28, 2023
1 parent 2ba10bd commit c0e0c35
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -303,6 +308,7 @@ case $1 in
;;

promote-release)
install_svn
promote_release
;;

Expand Down

0 comments on commit c0e0c35

Please sign in to comment.