From fd1c308b494ab90b8c1e84a23e9156662b1e26e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Tue, 12 Sep 2023 09:18:40 +0200 Subject: [PATCH] jibri: fix new ChromeDriver API endpoints --- jibri/rootfs/usr/bin/install-chrome.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jibri/rootfs/usr/bin/install-chrome.sh b/jibri/rootfs/usr/bin/install-chrome.sh index bc7a3b9..0fb6564 100755 --- a/jibri/rootfs/usr/bin/install-chrome.sh +++ b/jibri/rootfs/usr/bin/install-chrome.sh @@ -22,9 +22,9 @@ else google-chrome --version if [ "${CHROMEDRIVER_MAJOR_RELEASE}" = "latest" ]; then - CHROMEDRIVER_RELEASE="$(curl -4Ls https://chromedriver.storage.googleapis.com/LATEST_RELEASE)" + CHROMEDRIVER_RELEASE="$(curl -4Ls https://googlechromelabs.github.io/chrome-for-testing/LATEST_RELEASE_STABLE)" else - CHROMEDRIVER_RELEASE="$(curl -4Ls https://chromedriver.storage.googleapis.com/LATEST_RELEASE_${CHROMEDRIVER_MAJOR_RELEASE})" + CHROMEDRIVER_RELEASE="$(curl -4Ls https://googlechromelabs.github.io/chrome-for-testing/LATEST_RELEASE_${CHROMEDRIVER_MAJOR_RELEASE})" fi CHROMEDRIVER_ZIP="/tmp/chromedriver_linux64.zip"