mirror of
https://github.com/capistrano/capistrano
synced 2023-03-27 23:21:18 -04:00
Ignore apt-get 404 errors that were breaking CI for Ruby < 2.3 (#2124)
This commit is contained in:
parent
dd947706ca
commit
f1ad06f42a
1 changed files with 2 additions and 2 deletions
|
@ -39,8 +39,8 @@ commands:
|
|||
name: Install OpenSSH 8.1p1 if necessary
|
||||
command: |
|
||||
if $(ssh -V 2>&1 | grep -q -v OpenSSH_8); then
|
||||
apt-get update
|
||||
apt-get install -y --force-yes libssl-dev
|
||||
apt-get update || true
|
||||
apt-get install -y --force-yes libssl-dev || true
|
||||
mkdir ~/tempdownload
|
||||
cd ~/tempdownload
|
||||
wget https://cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-8.1p1.tar.gz
|
||||
|
|
Loading…
Reference in a new issue