From 280871d0fb87fc8eac72fd840f41575378f0a47f Mon Sep 17 00:00:00 2001 From: David Baker Date: Fri, 3 Apr 2020 19:08:39 +0100 Subject: [PATCH] Update openssl Apparently openssl move tarballs to /old/ once there's a new version so all the links break. I guess we should detect what the latest version is and use that. For now, update the URL. --- hak/matrix-seshat/fetchDeps.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hak/matrix-seshat/fetchDeps.js b/hak/matrix-seshat/fetchDeps.js index 923100d..b777d01 100644 --- a/hak/matrix-seshat/fetchDeps.js +++ b/hak/matrix-seshat/fetchDeps.js @@ -113,7 +113,7 @@ async function getOpenSsl(hakEnv, moduleInfo) { haveOpenSslTar = false; } if (!haveOpenSslTar) { - await needle('get', 'https://www.openssl.org/source/openssl-1.1.1d.tar.gz', { + await needle('get', 'https://www.openssl.org/source/openssl-1.1.1f.tar.gz', { follow: 10, output: openSslTarball, });