Skip to content

Commit

Permalink
Ignore apt-get 404 errors that were breaking CI for Ruby < 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mattbrictson committed Mar 25, 2023
1 parent dd94770 commit 406ab9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 406ab9f

Please sign in to comment.