From f1ad06f42a350e8b85d98df5f93c76ffeac1807c Mon Sep 17 00:00:00 2001 From: Matt Brictson Date: Sat, 25 Mar 2023 14:33:48 -0700 Subject: [PATCH] Ignore apt-get 404 errors that were breaking CI for Ruby < 2.3 (#2124) --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 90f18127..c3ca30df 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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