Skip to content

Commit 7caf7e0

Browse files
committed
Install svn when using docker release script to promote release
1 parent 01a7a9e commit 7caf7e0

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

docker.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ install_gnupg2_and_svn(){
3737
apt install gnupg2 subversion -y
3838
}
3939

40+
install_svn(){
41+
apt update
42+
apt install subversion -y
43+
}
44+
4045
get_gpg_keys(){
4146
GPG_KEYS=$($GPG_COMMAND --list-keys --with-colons --keyid-format LONG)
4247

@@ -303,6 +308,7 @@ case $1 in
303308
;;
304309

305310
promote-release)
311+
install_svn
306312
promote_release
307313
;;
308314

0 commit comments

Comments
 (0)